14 lines
238 B
Nix
14 lines
238 B
Nix
{ ...
|
|
}:
|
|
|
|
{
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
|
|
# Create a `docker` alias for podman
|
|
dockerCompat = true;
|
|
|
|
# Required for containers to talk to each other
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
}
|