colmena: support running arbitrary commands before updating
Alan Pearce alan@alanpearce.eu
Thu, 13 Mar 2025 14:48:48 +0100
1 files changed, 12 insertions(+), 0 deletions(-)
M system/settings/colmena-auto-upgrade.nix → system/settings/colmena-auto-upgrade.nix
@@ -77,6 +77,15 @@ }; }; }; + preUpgradeHook = lib.mkOption { + type = lib.types.str; + default = ""; + description = "Commands to run before upgrade"; + example = lib.literalExpression '' + $${pkgs.npins}/bin/npins update + ''; + }; + useNixShell = lib.mkOption { default = false; type = lib.types.bool; @@ -221,6 +230,9 @@ ${git} fetch --prune ${git} checkout ${cfg.git.branch} '' } + + ${cfg.preUpgradeHook} + ${if cfg.useNixShell then '' ${nix-shell} --run "${pkgs.writeShellScript "colmena-auto-upgrade" mainScript}" ''