added libvirt to laptop
This commit is contained in:
parent
fff031e24c
commit
66a6fa05a2
|
@ -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
9
laptop/libvirt.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
virtualisation.libvirtd.enable = true;
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
qemu_kvm
|
||||||
|
libvirt
|
||||||
|
polkit
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue