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 = [
|
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"
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user