22 lines
384 B
Nix
22 lines
384 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
# setup virt-manager
|
|
programs.virt-manager.enable = true;
|
|
|
|
# virtualistation
|
|
virtualisation = {
|
|
|
|
# libvirtd
|
|
libvirtd = {
|
|
enable = true;
|
|
};
|
|
|
|
# podman
|
|
podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
};
|
|
}
|