11 lines
214 B
Nix
11 lines
214 B
Nix
{ pkgs, ... }: {
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = false;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
podman-compose
|
|
];
|
|
}
|