2022-08-08 23:41:47 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [ podman-compose ];
|
|
|
|
|
|
|
|
virtualisation.podman.enable = true;
|
|
|
|
virtualisation.podman.dockerCompat = true;
|
|
|
|
virtualisation.podman.dockerSocket.enable = true;
|
|
|
|
virtualisation.podman.extraPackages = with pkgs; [ ];
|
2023-05-31 17:25:46 +02:00
|
|
|
virtualisation.podman.defaultNetwork.settings.dns_enabled = true;
|
2022-08-08 23:41:47 +02:00
|
|
|
}
|