This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/services/podman/default.nix

14 lines
218 B
Nix

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