Sovran_SystemsOS_Light/modules/Sovran_SystemsOS_Light_Updater_Script.nix

26 lines
308 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
systemd.services.Sovran_SystemsOS_Light_Updater = {
script = ''
2023-12-01 21:09:58 -08:00
2023-12-01 21:13:09 -08:00
flatpak update
'';
unitConfig = {
Type = "simple";
};
serviceConfig = {
RemainAfterExit = "no";
Type = "oneshot";
};
wantedBy = [ "multi-user.target" ];
};
}