{ pkgs, ... }: { # Enable common container config files in /etc/containers # virtualisation.containers.enable = true; # virtualisation = { # podman = { # enable = true; # dockerSocket.enable = true; # dockerCompat = true; # defaultNetwork.settings.dns_enabled = true; # }; # }; # # # Useful other development tools # environment.systemPackages = with pkgs; [ # dive # look into docker image layers # podman-tui # status of containers in the terminal # docker-compose # start group of containers for dev # ]; virtualisation.docker.enable = true; }