18 lines
397 B
Nix
18 lines
397 B
Nix
{pkgs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
qemu
|
|
distrobox
|
|
];
|
|
|
|
programs.virt-manager.enable = true;
|
|
users.groups.libvirtd.members = ["laythe"];
|
|
virtualisation.libvirtd.enable = true;
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
|
virtualisation.libvirtd.qemu.swtpm.enable = true;
|
|
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
} |