mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 12:26:50 +01:00
10 lines
521 B
Nix
10 lines
521 B
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
{
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
randomizedDelaySec = "30min";
|
|
flake = if config.services.archisteamfarm.enable then "$(${pkgs.coreutils}/bin/rm -rf /var/lib/update-repo && ${lib.getExe pkgs.git} clone git@codeberg.org:jopejoe1/nix-conf.git /var/lib/update-repo -q --depth=1 && ${lib.getExe pkgs.git} -C /var/lib/update-repo am /home/jopejoe1/.config/patches/0001-add-liscense.patch -q)/var/lib/update-repo" else "github:jopejoe1/nix-conf";
|
|
dates = "hourly";
|
|
};
|
|
}
|