nix-conf/home/user/gtk.nix
2024-03-26 23:55:25 +04:00

25 lines
520 B
Nix

{ pkgs, ... }:
{
gtk = {
enable = true;
cursorTheme = {
name = "Catppuccin-Macchiato-Teal";
package = pkgs.catppuccin-gtk;
};
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-name=Catppuccin-Macchiato-Teal
'';
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-name=Catppuccin-Macchiato-Teal
'';
};
};
}