CrOS/hosts/common/optional/podman.nix
TheWanderingCrow c84156748b podman
2025-08-18 11:03:53 -04:00

10 lines
203 B
Nix

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