commit 8a4c382ba7fa91f98d11867c57c8ef5b668a32db
parent 3a59030706ad8014c2af76c56053817d3568023f
Author: Vincent Demeester <vincent@sbr.pm>
Date: Wed, 24 Aug 2022 15:35:28 +0200
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>
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/systems/hosts/wakasu.nix b/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..