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

11 lines
163 B
Nix
Raw Permalink Normal View History

2023-01-18 19:14:16 +00:00
{ config, pkgs, ... }:
{
imports = [ ./containers ];
virtualisation.podman = {
enable = true;
};
virtualisation.oci-containers.backend = "podman";
}