18 lines
309 B
Nix
18 lines
309 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
dockerSocket.enable = true;
|
|
defaultNetwork.settings.dns_enabled = false;
|
|
};
|
|
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
podman-compose
|
|
];
|
|
|
|
}
|