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

@ -3,9 +3,6 @@
pkgs,
...
}: {
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
security.pam.services.login.enableGnomeKeyring = true;

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
]
}

View file

@ -8,13 +8,6 @@
curl
git
tmux
pciutils
usbutils
smartmontools
wl-clipboard
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
v4l-utils
];
}