Files
nixos/utils/modules/autoupgrade.nix
2024-06-10 18:52:00 +02:00

8 lines
173 B
Nix

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