nix-config/hosts/lkk-nix-1/services/container.nix

14 lines
219 B
Nix
Raw Normal View History

2024-05-15 09:25:27 +00:00
{
config,
pkgs,
...
}: {
imports = [./containers];
virtualisation.podman = {
enable = true;
defaultNetwork.settings = {dns_enabled = true;};
};
virtualisation.oci-containers.backend = "podman";
}