12 lines
351 B
Nix
12 lines
351 B
Nix
{ 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; [ ];
|
|
virtualisation.podman.defaultNetwork.settings.dns_enabled = true;
|
|
}
|