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

34 lines
394 B
Nix

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