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

12 lines
218 B
Nix
Raw Permalink 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-01-18 19:14:16 +00:00
};
virtualisation.oci-containers.backend = "podman";
}