nix/home-manager/modules/gtk.nix

20 lines
455 B
Nix
Raw Normal View History

2024-11-24 22:26:46 -07:00
{ 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 {});
};
};
}