Init
This commit is contained in:
32
home/desktop/gtk.nix
Normal file
32
home/desktop/gtk.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [ catppuccin-papirus-folders ];
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
|
||||
font = {
|
||||
name = "FiraCode Nerd Font Propo";
|
||||
size = 12;
|
||||
};
|
||||
|
||||
theme = {
|
||||
name = "catppuccin-mocha-standard-mauve-dark";
|
||||
package = pkgs.catppuccin-gtk;
|
||||
};
|
||||
|
||||
iconTheme = {
|
||||
name = "Papirus-Dark";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
};
|
||||
|
||||
cursorTheme = {
|
||||
name = "catppuccin-mocha-dark";
|
||||
package = pkgs.catppuccin-cursors.mocha-dark;
|
||||
size = 24;
|
||||
};
|
||||
|
||||
gtk3.extraConfig.gtk-application-prefer-dark-theme = true;
|
||||
gtk4.extraConfig.gtk-application-prefer-dark-theme = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user