Files
nixos/utils/modules/autoupgrade.nix
2025-04-25 20:35:33 +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.11";
}