dotfiles/nixcfgs/modules/nixos/host-machine.nix
2025-10-13 02:19:59 +01:00

13 lines
257 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
]
}