{ pkgs, ... }: { # virtualisation.docker.enable = true; virtualisation.docker = { enable = true; package = pkgs.docker; # listenOptions = [ # "unix:///var/run/docker.sock" # "tcp://0.0.0.0:2375" #]; # daemon.settings = { # metrics-addr = "0.0.0.0:9323"; # experimental = true; # }; }; environment.systemPackages = with pkgs; [ docker-compose docker-buildx ]; }