nixos/system/podman.nix

11 lines
115 B
Nix

{ pkgs, ...}:
{
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
};
};
}