dotfiles/nixcfgs/modules/nixos/desktop/host-machine.nix
2025-11-27 22:47:50 +00:00

17 lines
340 B
Nix

{pkgs, ...}: {
imports = [
./xremap.nix
./diskutil.nix
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
environment.systemPackages = with pkgs; [
pciutils
usbutils
v4l-utils
];
programs.gpu-screen-recorder.enable = true;
}