feat: add gnome theming

This commit is contained in:
2026-02-21 12:28:12 +01:00
parent 9c8d2b3043
commit 3f7ad82e25
2 changed files with 14 additions and 10 deletions

View File

@@ -8,7 +8,6 @@
imports = [ imports = [
./fish.nix ./fish.nix
./git.nix ./git.nix
./gnome.nix
./kitty.nix ./kitty.nix
./mangohud.nix ./mangohud.nix
./tmux.nix ./tmux.nix
@@ -17,11 +16,9 @@
] ]
++ ( ++ (
if currentSystemDe == "hyprland" then if currentSystemDe == "hyprland" then
[
./hyprland ./hyprland
]
else else
[ ] [ ] ++ (if currentSystemDe == "gnome" then ./gnome.nix else [ ])
); );
home = { home = {
@@ -34,11 +31,6 @@
packages = [ packages = [
pkgs.dconf pkgs.dconf
]; ];
pointerCursor = {
enable = false;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
};
sessionPath = [ sessionPath = [
"$HOME/.local/bin" "$HOME/.local/bin"
]; ];

View File

@@ -11,4 +11,16 @@
}; };
"org/gnome/desktop/interface".color-scheme = "prefer-dark"; "org/gnome/desktop/interface".color-scheme = "prefer-dark";
}; };
gtk = {
enable = true;
iconTheme = {
name = "Papirus";
package = pkgs.papirus-icon-theme;
};
cursorTheme = {
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
};
};
} }