nixos-config/common/boot.nix
wo2wz e1cccdbfa8 primitive config for Drone,
use rustscheds package for scx,
add nixos bash module
2025-08-01 01:43:18 -04:00

21 lines
No EOL
369 B
Nix
Executable file

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