12 lines
218 B
Nix
12 lines
218 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ./containers ];
|
||
|
|
||
|
virtualisation.podman = {
|
||
|
enable = true;
|
||
|
defaultNetwork.settings = { dns_enabled = true; };
|
||
|
};
|
||
|
virtualisation.oci-containers.backend = "podman";
|
||
|
}
|