aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-18 21:20:24 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-18 21:20:24 +0200
commit605202d32e7c10917577eaa5cbb3561ee7976b36 (patch)
tree3c691e0062f1d644193d8100036c59336ab2bb7a
parenta35de341b766ef3bd5721bebbb7d3ceb63551909 (diff)
Fixed docker
-rw-r--r--hosts/herra/ai.nix2
-rw-r--r--system/virtualisation.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/hosts/herra/ai.nix b/hosts/herra/ai.nix
index 4f322cd..bb6692a 100644
--- a/hosts/herra/ai.nix
+++ b/hosts/herra/ai.nix
@@ -65,7 +65,7 @@ in {
Type = "oneshot";
RemainAfterExit = true;
};
- path = [pkgs.git pkgs.docker];
+ path = [pkgs.git pkgs.unstable.docker_29];
script = ''
if [ ! -d "${odysseusDir}/.git" ]; then
git clone ${odysseusRepo} ${odysseusDir}
diff --git a/system/virtualisation.nix b/system/virtualisation.nix
index eae69f7..c68c2fe 100644
--- a/system/virtualisation.nix
+++ b/system/virtualisation.nix
@@ -2,7 +2,7 @@
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
- package = pkgs.docker_29;
+ package = pkgs.unstable.docker_29;
};
virtualisation.oci-containers = {
backend = "docker";