diff --git a/modules/containers.nix b/modules/containers.nix index db20045..5474d1a 100644 --- a/modules/containers.nix +++ b/modules/containers.nix @@ -1,5 +1,12 @@ +{ pkgs, ... }: { - # Enable Docker - # TODO: podman - virtualisation.docker.enable = true; + # Enable Podman w/ docker compose compatibility + virtualisation.podman = { + enable = true; + dockerCompat = true; + }; + + environment.systemPackages = with pkgs; [ + docker-compose + ]; } \ No newline at end of file