Commit 8a4c382ba7fa

Vincent Demeester <vincent@sbr.pm>
2022-08-24 15:35:28
systems/wakasu: disable docker and add only client…
… I will rely on podman and *mainly* on remote docker daemon (and buildkit daemon) Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 3a59030
Changed files (1)
systems
systems/hosts/wakasu.nix
@@ -80,7 +80,7 @@ in
       enable = true;
       containers = {
         enable = true;
-        docker.enable = true;
+        # docker.enable = true;
         podman.enable = true;
       };
     };
@@ -100,6 +100,10 @@ in
   # TODO Migrate to modules
   profiles.home = true;
   profiles.externalbuilder.enable = true;
+  environment.systemPackages = with pkgs; [
+    # docker client only
+    docker-client
+  ];
 
   services = {
     # automatic login is "safe" as we ask for the encryption passphrase anyway..