Sovran_SystemsOS_Light/modules/Sovran_SystemsOS_Light_Updater_Script.nix

26 lines
359 B
Nix
Raw Normal View History

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