Disable docker starting on boot
diff --git a/modules/docker.nix b/modules/docker.nix
index 3f6a4f2..77d0b55 100644
--- a/modules/docker.nix
+++ b/modules/docker.nix
@@ -1,6 +1,9 @@
 { username, ... }: {
   config = {
-    virtualisation.docker.enable = true;
+    virtualisation.docker = {
+      enable = true;
+      enableOnBoot = false;
+    };
 
     users.users.${username}.extraGroups = [ "docker" ];