diff --git a/modules/docker.nix b/modules/docker.nix index 2c88d1a..67bb7c7 100644 --- a/modules/docker.nix +++ b/modules/docker.nix @@ -7,6 +7,7 @@ virtualisation = { docker = { enable = true; + package = pkgs.docker_29; daemon.settings = { ipv6 = true; ip6tables = true; diff --git a/modules/netbird-client.nix b/modules/netbird-client.nix index f6429f9..8477d00 100644 --- a/modules/netbird-client.nix +++ b/modules/netbird-client.nix @@ -94,7 +94,7 @@ in { systemd.services."docker-network-webproxy" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; }; diff --git a/modules/traefik-oidc.nix b/modules/traefik-oidc.nix index 92b1204..c1bff3f 100644 --- a/modules/traefik-oidc.nix +++ b/modules/traefik-oidc.nix @@ -206,7 +206,7 @@ in { }; systemd.services."docker-network-traefik" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; }; diff --git a/modules/traefik.nix b/modules/traefik.nix index 7f4ef6b..322c190 100644 --- a/modules/traefik.nix +++ b/modules/traefik.nix @@ -112,7 +112,7 @@ in { }; systemd.services."docker-network-traefik" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; }; @@ -122,7 +122,7 @@ in { }; systemd.services."docker-network-docker-socket" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; };