12 lines
402 B
Nix
12 lines
402 B
Nix
|
{
|
||
|
virtualisation.podman.enable = true;
|
||
|
virtualisation.podman.dockerCompat = true; # alias docker to podman
|
||
|
virtualisation.oci-containers.backend = "podman"; # default
|
||
|
|
||
|
# Required for containers under podman-compose to be able to talk to each other.
|
||
|
#virtualisation.defaultNetwork.settings.dns_enabled = true;
|
||
|
|
||
|
# TODO: if root-on-zfs
|
||
|
#virtualisation.podman.extraPackages = [ pkgs.zfs ];
|
||
|
}
|