nixpkgs/home/gtk.nix
Daniel Siepmann 45070a76c5
Switch to expected theme
I don't want ubuntu dark as this has orange color.
Instead I want the default which has blue colors.

Don't know how this happened, most parts were blue until today.
2022-06-07 08:49:09 +02:00

38 lines
696 B
Nix

{ pkgs }:
# Possible alternatives:
# https://github.com/FedoraQt/adwaita-qt
# https://github.com/EliverLara/Nordic
# And maybe use https://github.com/themix-project/oomox to adjust the color to follow my color scheme
{
enable = true;
theme = {
package = pkgs.qogir-theme;
name = "Qogir-Dark";
};
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-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;
};
}