pub-solar-os/profiles/virt/default.nix
2020-12-19 17:22:00 -07:00

29 lines
525 B
Nix

{ pkgs, ... }: {
virtualisation = {
libvirtd = {
enable = true;
qemuRunAsRoot = false;
allowedBridges = [
"virbr0"
"virbr1"
];
};
podman = {
enable = true;
dockerCompat = true;
};
oci-containers.backend = "podman";
};
# you'll need to add your user to 'libvirtd' group to use virt-manager
environment.systemPackages = with pkgs; [ virt-manager vagrant ];
environment.sessionVariables = {
VAGRANT_DEFAULT_PROVIDER = "libvirt";
};
}