Compare commits

...

2 commits

Author SHA1 Message Date
e93bf793a7 Inital nix-serve setup 2025-04-16 19:44:36 -04:00
29c18b8a2c Setup reboot window on driftwood 2025-04-16 19:42:41 -04:00
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ config,
lib,
pkgs,
...
}: {
services.nix-serve = {
enable = true;
};
}

View file

@ -68,4 +68,13 @@
user = "nathan";
guiAddress = "100.64.0.3:8384";
};
# Allow reboot on autoupgrades
system.autoUpgrade = {
allowReboot = true;
rebootWindow = {
lower = "03:00";
upper = "05:00";
};
};
}