mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 21:33:11 +01:00
28 lines
606 B
Nix
28 lines
606 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
libvirtd = {
|
|
enable = true;
|
|
qemu = {
|
|
runAsRoot = false;
|
|
swtpm.enable = true;
|
|
ovmf.packages = [
|
|
(pkgs.OVMF.override ({
|
|
tpmSupport = true;
|
|
secureBoot =
|
|
true;
|
|
})).fd
|
|
];
|
|
};
|
|
};
|
|
spiceUSBRedirection.enable = true;
|
|
};
|
|
# allow libvirts internal network stuff
|
|
networking.firewall.trustedInterfaces = [ "virbr0" "br0" ];
|
|
programs.virt-manager.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
virt-viewer
|
|
];
|
|
}
|