37 lines
927 B
Nix
37 lines
927 B
Nix
{
|
|
pkgs,
|
|
custom ? {
|
|
font = "RobotoMono Nerd Font";
|
|
fontsize = "12";
|
|
cursor = "Numix-Cursor";
|
|
},
|
|
...
|
|
}:
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
font.name = "${custom.font} ${custom.fontsize}";
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.catppuccin-papirus-folders;
|
|
};
|
|
cursorTheme = {
|
|
name = "${custom.cursor}";
|
|
package = pkgs.numix-cursor-theme;
|
|
};
|
|
theme = {
|
|
name = "Catppuccin-Mocha-Standard-Blue-Dark";
|
|
package = pkgs.catppuccin-gtk.override { variant="mocha"; };
|
|
};
|
|
gtk3.extraConfig = {
|
|
Settings = ''
|
|
gtk-application-prefer-dark-theme=1
|
|
'';
|
|
};
|
|
gtk4.extraConfig = {
|
|
Settings = ''
|
|
gtk-application-prefer-dark-theme=1
|
|
'';
|
|
};
|
|
};
|
|
} |