dotfiles/nixcfgs/modules/nixos/desktop/host-machine.nix
2025-11-22 19:36:03 +00:00

14 lines
303 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
];
programs.gpu-screen-recorder.enable = true;
}