Added a systemd unit to update the Sovran Book Pro
This commit is contained in:
parent
aa48ffef1f
commit
01fa00f5e7
26
modules/Sovran_SystemsOS_Light_Updater_Script.nix
Normal file
26
modules/Sovran_SystemsOS_Light_Updater_Script.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
systemd.services.Sovran_SystemsOS_Light_Updater = {
|
||||||
|
|
||||||
|
script = ''
|
||||||
|
|
||||||
|
cd /etc/nixos && flatpak update && nix flake update && nixos-rebuild switch
|
||||||
|
|
||||||
|
'';
|
||||||
|
|
||||||
|
unitConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
};
|
||||||
|
|
||||||
|
serviceConfig = {
|
||||||
|
RemainAfterExit = "no";
|
||||||
|
Type = "oneshot";
|
||||||
|
};
|
||||||
|
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -5,6 +5,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
|
|
||||||
./Sovran_SystemsOS_Light_File_Fixes_And_New_Services.nix
|
./Sovran_SystemsOS_Light_File_Fixes_And_New_Services.nix
|
||||||
|
./Sovran_SystemsOS_Light_Updater_Script.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user