10 lines
175 B
Nix
10 lines
175 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Enable automatic updates
|
|
system.autoUpgrade.enable = true;
|
|
# Automatically restart after update
|
|
#system.autoUpgrade.allowReboot = true;
|
|
}
|
|
|