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

28 lines
383 B
Nix

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