20 lines
No EOL
334 B
Nix
Executable file
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";
|
|
};
|
|
} |