2024-02-29 18:29:15 -05:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2024-03-02 19:32:29 -05:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
distrobox
|
|
|
|
];
|
|
|
|
|
2024-03-06 17:37:00 -05:00
|
|
|
programs.virt-manager.enable = true;
|
|
|
|
|
2024-02-29 18:29:15 -05:00
|
|
|
virtualisation = {
|
2024-03-06 17:37:00 -05:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|