6 lines
135 B
Nix
6 lines
135 B
Nix
{ lib, config, ... }: lib.mkIf(config.withContainers) {
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
}
|