feat(theme): better theming

This commit is contained in:
2026-01-24 19:43:10 +01:00
parent f6fe7945bb
commit be51aa7cc5
3 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
{
pkgs,
config,
...
}: {
gtk = {
enable = true;
colorScheme = "dark";
iconTheme = {
name = "Nordzy-icons";
package = pkgs.nordzy-icon-theme;
};
theme = {
package = pkgs.nordic;
name = "Nordic";
};
};
home.pointerCursor = {
enable = true;
gtk.enable = true;
hyprcursor.enable = config.home.desktop.hyprland.enable;
name = "Nordzy-cursors";
package = pkgs.nordzy-cursor-theme;
};
qt.enable = true;
}