Add GTK theming

This commit is contained in:
Tyler Beckman 2024-11-24 22:26:46 -07:00
parent 07eb61dde9
commit 3d38656105
Signed by: Ty
GPG key ID: 2813440C772555A4
3 changed files with 22 additions and 0 deletions

View file

@ -15,5 +15,6 @@
./modules/shell
./modules/vscode.nix
./modules/desktop.nix
./modules/gtk.nix
];
}

View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
gtk = {
enable = true;
theme = {
name = "Breeze-Dark";
package = pkgs.kdePackages.breeze-gtk;
};
cursorTheme = {
name = "Vimix-cursors";
package = pkgs.vimix-cursors;
size = 24;
};
iconTheme = {
name = "beautyline-garuda";
package = (pkgs.callPackage ../../packages/beautyline {});
};
};
}

View file

@ -2,5 +2,6 @@
{
# Enable KDE Plasma 6
services.desktopManager.plasma6.enable = true;
programs.dconf.enable = true;
programs.partition-manager.enable = true;
}