added libvirt to laptop

This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-02 22:06:05 +02:00
parent fff031e24c
commit 66a6fa05a2
2 changed files with 10 additions and 0 deletions

View file

@ -15,6 +15,7 @@
./tail.nix ./tail.nix
./podman.nix ./podman.nix
./incus.nix ./incus.nix
./libvirt.nix
]; ];
# Bootloader. # Bootloader.

9
laptop/libvirt.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [
qemu_kvm
libvirt
polkit
];
}