18 lines
382 B
Nix
18 lines
382 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
podman-compose # docker-compose alternative
|
|
podman-tui # status of containers in terminal
|
|
podman-desktop # Desktop client
|
|
];
|
|
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
|
|
virtualisation.oci-containers.backend = "podman";
|
|
}
|