We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0fac80 + 7d8d6f7 commit 89e5e1fCopy full SHA for 89e5e1f
testgrid.tahoe-lafs.org/system-configuration.nix
@@ -41,8 +41,16 @@
41
# Enable the X11 windowing system.
42
# services.xserver.enable = true;
43
44
-
45
+ # Periodically upgrade NixOS to the latest version. If enabled, a systemd
+ # timer will run `nixos-rebuild switch --upgrade` once a day.
46
+ system.autoUpgrade = {
47
+ enable = true;
48
+
49
+ # Reboot the system into the new generation instead of a switch if the new
50
+ # generation uses a different kernel, kernel modules or initrd than the
51
+ # booted system.
52
+ allowReboot = true;
53
+ };
54
55
# Configure keymap in X11
56
# services.xserver.layout = "us";
0 commit comments