Fix gtk config

This commit is contained in:
Tim Schubert 2020-03-10 22:48:27 +01:00
parent ac3ba714b8
commit 50c840f0d9
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA

12
gtk.nix
View file

@ -1,10 +1,16 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
gtk = { gtk = {
theme.package = pkgs.gnome-themes-extra; enable = true;
theme.name = "Adwaita Dark:"; theme.package = pkgs.gnome3.gnome-themes-extra;
iconTheme.package = pkgs.adwaita-icon-theme; theme.name = "Adwaita Dark";
iconTheme.package = pkgs.gnome3.adwaita-icon-theme;
iconTheme.name = "Adwaita"; iconTheme.name = "Adwaita";
font.package = pkgs.cantarell-fonts; font.package = pkgs.cantarell-fonts;
font.name = "Cantarell";
}; };
dconf.settings."org/gnome/desktop/interface" = {
enable-animations = false;
};
qt.platformTheme = true;
} }