dotfiles/nixcfgs/modules/nixos/desktop/host-machine.nix
2025-12-05 16:38:10 +00:00

18 lines
355 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
f2fs-tools
];
programs.gpu-screen-recorder.enable = true;
}