nixpkgs/home/gtk.nix
Daniel Siepmann 2c0dc5b92f
Disable gtk animations
Not sure if there are any, I don't use many UIs
2022-05-20 15:51:46 +02:00

39 lines
610 B
Nix

{ pkgs }:
{
enable = true;
theme = {
package = pkgs.qogir-theme;
name = "Qogir-Ubuntu-Dark";
};
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-ubuntu-dark";
};
cursorTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-ubuntu-dark";
size = 16;
};
font = {
package = pkgs.roboto-mono;
name = "Roboto Mono";
size = 14;
};
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = 1;
gtk-enable-animations = 0;
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
gtk-enable-animations = 0;
};
}