36 lines
534 B
Nix
Executable file
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
|
|
];
|
|
}
|