nix-dots/modules/containers.nix

12 lines
203 B
Nix

{ pkgs, ... }:
{
# Enable Podman w/ docker compose compatibility
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
environment.systemPackages = with pkgs; [
docker-compose
];
}