updated the nix files

This commit is contained in:
naturallaw77 2023-12-01 22:05:02 -08:00
parent 92cd935221
commit d71df2f73b
2 changed files with 0 additions and 28 deletions

View File

@ -1,7 +1,5 @@
#!/usr/bin/env bash
cd /home/free/Downloads
#### SCRIPT 1 ####

View File

@ -1,26 +0,0 @@
{ config, pkgs, lib, ... }:
{
systemd.services.Sovran_SystemsOS_Light_Updater = {
script = ''
flatpak update
'';
unitConfig = {
Type = "simple";
};
serviceConfig = {
RemainAfterExit = "no";
Type = "oneshot";
};
wantedBy = [ "multi-user.target" ];
};
}