9 lines
218 B
Nix
9 lines
218 B
Nix
|
|
{ config, lib, pkgs, inputs, ...}:
|
||
|
|
|
||
|
|
{
|
||
|
|
programs.virt-manager.enable = true;
|
||
|
|
users.groups.libvirtd.members = ["lunita"];
|
||
|
|
virtualisation.libvirtd.enable = true;
|
||
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
||
|
|
}
|