Sovran_SystemsOS_Light/modules/Sovran_SystemsOS_Light_Updater_Script.nix
2023-12-01 21:11:09 -08:00

26 lines
359 B
Nix

{ config, pkgs, lib, ... }:
{
systemd.services.Sovran_SystemsOS_Light_Updater = {
script = ''
cd /etc/nixos && nix flake update && nixos-rebuild switch
'';
unitConfig = {
Type = "simple";
};
serviceConfig = {
RemainAfterExit = "no";
Type = "oneshot";
};
wantedBy = [ "multi-user.target" ];
};
}