2023-01-18 19:14:16 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ./containers ];
|
|
|
|
|
|
|
|
virtualisation.podman = {
|
|
|
|
enable = true;
|
2023-04-13 04:20:25 +00:00
|
|
|
defaultNetwork.settings = { dns_enabled = true; };
|
2023-01-18 19:14:16 +00:00
|
|
|
};
|
|
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
}
|