all repos — nixfiles @ ded3ac5dff9c51fff90c5dffb111894e318ea3e3

System and user configuration, managed by nix and home-manager

linde/colmena: enable configuration of checked out branch
Alan Pearce alan@alanpearce.eu
Thu, 13 Mar 2025 14:39:12 +0100
commit

ded3ac5dff9c51fff90c5dffb111894e318ea3e3

parent

c81219b243e67489dd92a6d9d23cd0e77ee3a153

2 files changed, 19 insertions(+), 10 deletions(-)

jump to
M system/linde.nixsystem/linde.nix
@@ -112,7 +112,10 @@ }; 
   services.colmenaAutoUpgrade = {
     enable = true;
-    pullGit = true;
+    git = {
+      enable = true;
+      branch = "origin/main";
+    };
     useNixShell = true;
     dates = "03:23";
     allowReboot = true;
M system/settings/colmena-auto-upgrade.nixsystem/settings/colmena-auto-upgrade.nix
@@ -63,12 +63,18 @@ default = false;       description = "Enable automatic upgrades for Colmena";
     };
 
-    pullGit = lib.mkOption {
-      default = false;
-      type = lib.types.bool;
-      description = ''
-        Whether to pull the latest changes from the Git repository before upgrading.
-      '';
+    git = lib.mkOption {
+      type = lib.types.submodule {
+        options = {
+          enable = lib.mkEnableOption "Whether to pull the latest changes from the Git repository before upgrading.";
+
+          branch = lib.mkOption {
+            type = lib.types.str;
+            default = "origin/main";
+            description = "Git branch to checkout after fetching";
+          };
+        };
+      };
     };
 
     useNixShell = lib.mkOption {
@@ -209,10 +215,10 @@ git = "${pkgs.gitMinimal}/bin/git";           nix-shell = "${pkgs.nix}/bin/nix-shell";
         in
         ''
-          ${lib.optionalString cfg.pullGit
+          ${lib.optionalString cfg.git.enable
             ''
-            ${git} fetch --all --prune
-            ${git} checkout FETCH_HEAD
+            ${git} fetch --prune
+            ${git} checkout ${cfg.git.branch}
             ''
           }
           ${if cfg.useNixShell then ''