1
0
Fork 0
nixos-config/system/server.nix
2019-07-26 17:31:26 +02:00

16 lines
329 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [ ./init_ssh.nix ];
config = {
systemd.services."system-maintenance" = {
startAt = "2:45";
serviceConfig = {
Type = "oneshot";
ExecStart = "${(import ./update-lib.nix config.system.build.nixos-rebuild).system-maintenance}/bin/system-maintenance";
};
};
};
}