nix-config/modules/containers/default.nix
2024-05-09 20:17:37 +02:00

6 lines
135 B
Nix

{ lib, config, ... }: lib.mkIf(config.withContainers) {
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
}