15 lines
325 B
Nix
15 lines
325 B
Nix
{ config, lib, inputs, ... }: {
|
|
imports = [ ./hardware.nix ../../modules/server ];
|
|
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
flake = "git+https://git.helcel.net/sora/nixconfig";
|
|
flags = [
|
|
"--no-write-lock-file"
|
|
];
|
|
dates = "04:00";
|
|
randomizedDelaySec = "30min";
|
|
allowReboot = false;
|
|
};
|
|
}
|