mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 18:30:43 -06:00
27 lines
408 B
Nix
27 lines
408 B
Nix
|
{
|
||
|
pkgs,
|
||
|
enabled,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
programs.virt-manager = enabled;
|
||
|
|
||
|
virtualisation = {
|
||
|
libvirtd = enabled // {
|
||
|
# Enable TPM emulation (optional)
|
||
|
qemu = {
|
||
|
swtpm = enabled;
|
||
|
ovmf.packages = [ pkgs.OVMFFull.fd ];
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
# Enable USB redirection (optional)
|
||
|
spiceUSBRedirection = enabled;
|
||
|
};
|
||
|
|
||
|
users.users.daylin = {
|
||
|
extraGroups = [ "libvirtd" ];
|
||
|
};
|
||
|
}
|