From f705d03cd0a07a88703c1bd6a7ea7577dbeb1146 Mon Sep 17 00:00:00 2001 From: caleb Date: Mon, 12 Feb 2024 14:54:01 -0500 Subject: [PATCH] added docker (podman compat) --- school-configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; + }; + }; }