mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
15 lines
273 B
Nix
15 lines
273 B
Nix
{ pkgs, ... }:
|
|
{
|
|
users.users.me.extraGroups = [ "libvirtd" ];
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
# Enable TPM support for VMs
|
|
virtualisation.libvirtd.qemu = {
|
|
# swtpm.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
virt-manager
|
|
];
|
|
}
|