added docker (podman compat)

This commit is contained in:
caleb 2024-02-12 14:54:01 -05:00
parent c6c9d7ec2e
commit f705d03cd0

View File

@ -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;
};
};
}