more themeing stuff

This commit is contained in:
Schrottkatze 2025-03-27 20:02:54 +01:00
parent 6ec141902a
commit 8b6d55aad6
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo
3 changed files with 14 additions and 27 deletions

View file

@ -8,7 +8,7 @@
./tlp.nix
./locale.nix
./printing.nix
./stylix.nix
./themeing.nix
];
services.flatpak.enable = true;
security.polkit.enable = true;

View file

@ -39,4 +39,17 @@
wofi.enable = false;
};
};
gtk = {
enable = true;
cursorTheme = {
package = pkgs.phinger-cursors;
name = "phinger-cursors";
size = 30;
};
iconTheme = {
package = pkgs.gruvbox-dark-icons-gtk;
name = "gruvbox-dark-icons";
};
};
}

View file

@ -1,26 +0,0 @@
{
config,
lib,
pkgs,
...
}: {
config = {
home-manager.users.jade = {pkgs, ...}: {
home.packages = with pkgs; [
gruvbox-dark-icons-gtk
];
gtk = {
enable = true;
cursorTheme = {
package = pkgs.phinger-cursors;
name = "phinger-cursors";
size = 30;
};
iconTheme = {
package = pkgs.gruvbox-dark-icons-gtk;
name = "gruvbox-dark-icons";
};
};
};
};
}