use nixOS on libvirt

This commit is contained in:
js0ny 2025-10-13 02:19:59 +01:00
parent 4e456383ba
commit 6b7c6d529d
6 changed files with 89 additions and 12 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
environment.systemPackages = with pkgs; [
pciutils
usbutils
smartmontools
v4l-utils
]
}