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

@@ -67,6 +67,9 @@ in {
reboot = ["systemctl" "reboot"];
};
};
cli.enable = true;
cli = {
enable = true;
settings.theme.enableGtk = true;
};
};
}

View File

@@ -17,6 +17,7 @@ in {
./rofi
./spotify.nix
./swaync.nix
./theme.nix
./waybar.nix
./wlr-which-key.nix
./wlsunset.nix

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;
}