mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-22 18:52:43 +00:00
Some checks failed
Shell Script Check & Format / shell-check (push) Has been cancelled
20 lines
396 B
Nix
20 lines
396 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./xremap.nix
|
|
./diskutil.nix
|
|
../hardware/pipewire.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
|
|
openvpn
|
|
];
|
|
|
|
programs.gpu-screen-recorder.enable = true;
|
|
}
|