diff --git a/school-configuration.nix b/school-configuration.nix index d179779..b1a7489 100644 --- a/school-configuration.nix +++ b/school-configuration.nix @@ -3,8 +3,18 @@ environment.systemPackages = with pkgs; [ nmap wireshark + podman-compose ]; virtualisation.virtualbox.host.enable = true; users.extraGroups.vboxusers.members = [ "caleb" ]; + + #podman + virtualisation = { + podman = { + enable = true; + dockerCompat = true; + defaultNetwork.settings.dns_enabled = true; + }; + }; }