1
0
Fork 0

General: enable automatic timezones

This commit is contained in:
Aires 2024-08-11 19:08:42 -04:00
parent dde51666ea
commit 7e2ad09296
2 changed files with 14 additions and 3 deletions

View file

@ -313,11 +313,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1722987190,
"narHash": "sha256-68hmex5efCiM2aZlAAEcQgmFI4ZwWt8a80vOeB/5w3A=",
"lastModified": 1723282977,
"narHash": "sha256-oTK91aOlA/4IsjNAZGMEBz7Sq1zBS0Ltu4/nIQdYDOg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "21cc704b5e918c5fbf4f9fff22b4ac2681706d90",
"rev": "a781ff33ae258bbcfd4ed6e673860c3e923bf2cc",
"type": "github"
},
"original": {

View file

@ -46,6 +46,9 @@ in
environment.systemPackages = cfg.corePackages ++ cfg.packages;
services = {
# Automatically set the timezone
automatic-timezoned.enable = true;
# Enable fwupd (firmware updater)
fwupd.enable = true;
@ -70,6 +73,14 @@ in
};
};
# Enable visual updates
system.activationScripts.diff = {
supportsDryActivation = true;
text = ''
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff /run/current-system "$systemConfig"
'';
};
# Limit logout stop timer duration to 30 seconds
systemd.user.extraConfig = ''
DefaultTimeoutStopSec=30s