20 lines
335 B
Nix
20 lines
335 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.containers.enable = true;
|
|
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dive
|
|
podman-tui
|
|
podman-compose
|
|
];
|
|
}
|