nix/home-manager/modules/gtk.nix
2024-11-25 00:40:53 -07:00

20 lines
No EOL
455 B
Nix

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