nix-conf/home/user/gtk.nix
2026-01-10 12:46:40 +08:00

36 lines
534 B
Nix
Executable file

{
pkgs,
...
}:
{
gtk = {
enable = true;
cursorTheme = {
name = "Nordzy-cursors";
package = pkgs.nordzy-cursor-theme;
};
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
];
}