Update common.nix

This commit is contained in:
ediblerope 2025-12-03 10:42:11 +00:00 committed by GitHub
parent b69a07fa61
commit ba29260c29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;