Talos-Nixos/virtualisation.nix
2024-03-04 00:23:39 -05:00

15 lines
234 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
podman-compose
];
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
}