mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
17 lines
340 B
Nix
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;
|
|
}
|