pub-solar-os/profiles/virt/default.nix
2020-12-25 15:57:47 -07:00

25 lines
525 B
Nix

{ pkgs, ... }: {
virtualisation = {
libvirtd = {
enable = true;
qemuRunAsRoot = false;
allowedBridges = [
"virbr0"
"virbr1"
];
};
podman.enable = 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.shellAliases.docker = "podman";
environment.sessionVariables = {
VAGRANT_DEFAULT_PROVIDER = "libvirt";
};
}