13 lines
244 B
Nix
13 lines
244 B
Nix
{ config, pkgs, ...}:
|
|
|
|
{
|
|
virtualisation.podman.enable = true;
|
|
virtualisation.podman.defaultNetwork.settings.dns_enabled = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
podman
|
|
podman-compose
|
|
podman-tui
|
|
slirp4netns
|
|
];
|
|
} |