configs/appserver/libvirt.nix

10 lines
153 B
Nix
Raw Permalink Normal View History

2024-05-20 12:24:36 +02:00
{ config, pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [
qemu_kvm
libvirt
polkit
2024-05-20 12:24:36 +02:00
];
}