mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
feat: add gnome theming
This commit is contained in:
@@ -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"
|
||||
];
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user