summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorMark Vainomaa <mikroskeem@mikroskeem.eu>2021-01-15 15:53:31 +0200
committerMark Vainomaa <mikroskeem@mikroskeem.eu>2021-01-15 15:53:31 +0200
commita81c27cd54f4badd24924e82f0d7da7285137534 (patch)
tree009d647a6bfce9a3a46c1e3fd052881af80cc881 /nixos/modules
parent5f69227d55f23b2fd21615ba55d7b0d8f5d4b298 (diff)
docker: fix systemd socket activation
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/virtualisation/docker.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix
index f0ee2fe14608..83d90d9fc97e 100644
--- a/nixos/modules/virtualisation/docker.nix
+++ b/nixos/modules/virtualisation/docker.nix
@@ -165,7 +165,7 @@ in
''
${cfg.package}/bin/dockerd \
--group=docker \
- --host=unix:// \
+ --host=fd:// \
--log-driver=${cfg.logDriver} \
${optionalString (cfg.storageDriver != null) "--storage-driver=${cfg.storageDriver}"} \
${optionalString cfg.liveRestore "--live-restore" } \