Files
nixos/utils/modules/autoupgrade.nix
2023-12-06 09:19:30 +01:00

8 lines
173 B
Nix

{ config, ... }:
{
system.autoUpgrade.enable = true;
system.autoUpgrade.allowReboot = false;
system.autoUpgrade.channel = "https://channels.nixos.org/nixos-23.11";
}