Hacky way to apply a patch before autoupgrade

This commit is contained in:
Johannes Jöns 2023-09-28 20:30:19 +02:00
parent da0adb54e6
commit 1826c66598

View file

@ -1,10 +1,10 @@
{ ... }:
{ pkgs, ... }:
{
system.autoUpgrade = {
enable = true;
randomizedDelaySec = "30min";
flake = "git+https://codeberg.org/jopejoe1/nix-conf.git";
flake = "$(${pkgs.coreutils}/bin/rm -rf /var/lib/update-repo && ${pkgs.git}/bin/git clone git@codeberg.org:jopejoe1/nix-conf.git /var/lib/update-repo -q && ${pkgs.git}/bin/git -C /var/lib/update-repo am /home/jopejoe1/.config/patches/0001-add-liscense.patch -q)/var/lib/update-repo";
dates = "hourly";
};
}