more themeing stuff

This commit is contained in:
Schrottkatze 2025-03-27 20:02:54 +01:00
commit 8b6d55aad6
No known key found for this signature in database
3 changed files with 14 additions and 27 deletions

View file

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

View file

@ -39,4 +39,17 @@
wofi.enable = false; 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";
};
};
};
};
}