mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-13 16:18:57 -05:00
14 lines
293 B
Nix
14 lines
293 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
extraPackages = with pkgs; [
|
|
podman-compose
|
|
];
|
|
};
|
|
|
|
# required for podman DNS resolution
|
|
networking.firewall.allowedUDPPorts = [ 53 ];
|
|
}
|