Files
nixos-configs/updates/no-restart.nix
Wesley Irvin dd4835f520 Initial flake commit
Enough of an initial flake and layout for an initial commit.
2023-06-29 13:42:57 -04:00

10 lines
175 B
Nix

{ config, pkgs, ... }:
{
# Enable automatic updates
system.autoUpgrade.enable = true;
# Automatically restart after update
#system.autoUpgrade.allowReboot = true;
}