diff --git a/common.nix b/common.nix index 48dad66..eab6a77 100644 --- a/common.nix +++ b/common.nix @@ -36,6 +36,7 @@ programs.dconf = { }; "org/gnome/desktop/interface" = { color-scheme = "prefer-dark"; + gtk-theme = "Adwaita-dark"; }; }; }]; @@ -46,16 +47,6 @@ environment.variables = { DCONF_PROFILE = "user"; }; -# Compile dconf databases -systemd.services.dconf-update = { - description = "Update dconf databases"; - wantedBy = [ "multi-user.target" ]; - serviceConfig = { - Type = "oneshot"; - ExecStart = "${pkgs.dconf}/bin/dconf update"; - }; -}; - # Define a user account. Don't forget to set a password with ‘passwd’. users.users.fred = { isNormalUser = true;