dotfiles/nixcfgs/modules/nixos/desktop/host-machine.nix
2025-10-24 22:41:27 +01:00

12 lines
256 B
Nix

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