dot.nix/home/users/toph/config/theme/default.nix
Chris Toph 9e443fa4f1 Refactors configurations across home for cleaner user/host-specific configs
- Removes global development utilities file and shifts related tools to core
- Updates gaming and vscode modules with refined commands and file renames
- Wraps GNOME dconf settings in mkDefault/mkForce for consistency across users
- Adds host-specific configurations (dconf, monitors, and VM settings)
- Organizes user theme files by relocating global assets to user directories
2025-05-28 17:04:49 -04:00

101 lines
1.7 KiB
Nix

{
pkgs,
inputs,
lib,
...
}:
let
qogir = pkgs.qogir-icon-theme.override {
colorVariants = [
"dark"
"standard"
];
themeVariants = [
"ubuntu"
];
};
in
{
imports = [
inputs.stylix.homeManagerModules.stylix
];
stylix = {
enable = true;
autoEnable = true;
base16Scheme = ./invincible.yaml;
image = ./wallpapers/invincible.jpg;
polarity = "dark";
fonts = {
serif = {
package = pkgs.google-fonts.override { fonts = [ "Laila" ]; };
name = "Laila";
};
sansSerif = {
package = pkgs.lexend;
name = "Lexend";
};
monospace = {
package = pkgs.monocraft-nerd-fonts;
name = "Monocraft";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
sizes = {
applications = 12;
desktop = 11;
popups = 11;
terminal = 12;
};
};
targets = {
gnome = {
enable = true;
useWallpaper = true;
};
vscode = {
enable = false;
# profileNames = [ "Stylix" ];
};
};
};
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 16;
};
gtk = {
enable = true;
iconTheme = {
# package = qogir;
# name = "Qogir";
package = (
pkgs.papirus-icon-theme.override {
color = "yellow";
}
);
name = "Papirus";
};
};
home.file = {
# ".config/stylix/invincible.yaml" = {
# source = ./invincible.yaml;
# };
"Pictures/Wallpapers" = {
source = ./wallpapers;
recursive = true;
};
};
}