nix-config/home/programs/podman.nix

12 lines
230 B
Nix
Raw Normal View History

2025-03-26 14:54:56 +01:00
{ pkgs, ... }: {
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
}