8 lines
218 B
Nix
8 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;
|
|
}
|