nixpkgs/home/gtk.nix
Daniel Siepmann 3283c5e1dc
Use home-manager pointerCursor module
This removes need to setup everything myself. Didn't know about it
earlier.
Does exactly what this commit removes.
2022-05-22 18:31:08 +02:00

33 lines
502 B
Nix

{ pkgs }:
{
enable = true;
theme = {
package = pkgs.qogir-theme;
name = "Qogir-Ubuntu-Dark";
};
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-ubuntu-dark";
};
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;
};
}