nixos-config/common/boot.nix
2025-07-26 20:50:26 -04:00

20 lines
No EOL
334 B
Nix
Executable file

{ inputs, config, pkgs, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
editor = false;
configurationLimit = 5;
};
efi.canTouchEfiVariables = true;
};
};
services.scx = {
enable = true;
# use gaming performance scheduler
scheduler = "scx_lavd";
};
}