20 lines
455 B
Nix
20 lines
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 {});
|
||
|
};
|
||
|
};
|
||
|
}
|