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

View File

@@ -11,4 +11,16 @@
};
"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;
};
};
}