summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2017-01-01 09:01:03 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2017-01-01 09:03:09 +0100
commitce99e34b17dea68234bbfe297b522bdd920859e5 (patch)
tree5153b31ca0abdac18dff77d20c5ec30b67a250fa /nixos
parentd5f8652e6dea234461564f634a67b877fe7e42ab (diff)
downloadnixlib-ce99e34b17dea68234bbfe297b522bdd920859e5.tar
nixlib-ce99e34b17dea68234bbfe297b522bdd920859e5.tar.gz
nixlib-ce99e34b17dea68234bbfe297b522bdd920859e5.tar.bz2
nixlib-ce99e34b17dea68234bbfe297b522bdd920859e5.tar.lz
nixlib-ce99e34b17dea68234bbfe297b522bdd920859e5.tar.xz
nixlib-ce99e34b17dea68234bbfe297b522bdd920859e5.tar.zst
nixlib-ce99e34b17dea68234bbfe297b522bdd920859e5.zip
docker: deprecate socketActivation option
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/virtualisation/docker.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix
index 92249573a4b7..4b30a38f832f 100644
--- a/nixos/modules/virtualisation/docker.nix
+++ b/nixos/modules/virtualisation/docker.nix
@@ -130,4 +130,8 @@ in
     }
   ]);
 
+  imports = [
+    (mkRemovedOptionModule ["virtualisation" "docker" "socketActivation"] "This option was removed in favor of starting docker at boot")
+  ];
+
 }