nix-conf/home/user/gtk.nix
danny 9c0fdc9b60 update: zen browser flake
Fix Caelestia shell gtk settings
2025-08-21 22:40:58 +08:00

39 lines
608 B
Nix

{
pkgs,
...
}:
let
cursorName = "catppuccin-macchiato-lavender-cursors";
in
{
gtk = {
enable = true;
cursorTheme = {
name = cursorName;
package = pkgs.catppuccin-cursors.macchiatoLavender;
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
gtk3 = {
extraConfig = {
gtk-application-prefer-dark-theme = true;
};
};
gtk4 = {
extraConfig = {
gtk-application-prefer-dark-theme = true;
};
};
};
home.packages = with pkgs; [
gsettings-desktop-schemas
glib
];
}