nixcfg/modules/virtualization/default.nix

22 lines
465 B
Nix
Raw Normal View History

2024-02-29 18:29:15 -05:00
{ pkgs, ... }:
{
2024-03-02 19:32:29 -05:00
environment.systemPackages = with pkgs; [
distrobox
];
programs.virt-manager.enable = true;
2024-02-29 18:29:15 -05:00
virtualisation = {
libvirtd.enable = true;
2024-02-29 18:29:15 -05:00
podman = {
enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement
dockerCompat = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true;
};
};
}