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

13 lines
257 B
Nix
Raw Normal View History

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-04-13 04:58:47 +00:00
networkSocket.openFirewall = true;
2023-01-18 19:14:16 +00:00
};
virtualisation.oci-containers.backend = "podman";
}