From 77c4056ada0c77692e36ae93ec0065d8775ae8ab Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Wed, 20 Mar 2024 21:36:56 +0100 Subject: [PATCH] [docker] Disable on boot --- nixos/modules/virtualisation/docker/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/virtualisation/docker/default.nix b/nixos/modules/virtualisation/docker/default.nix index 9029217..6b90e37 100644 --- a/nixos/modules/virtualisation/docker/default.nix +++ b/nixos/modules/virtualisation/docker/default.nix @@ -9,6 +9,8 @@ in { virtualisation.docker = { enable = true; enableNvidia = true; + # Because these are made for development purposes and not for servers + enableOnBoot = false; }; }; }