Files
nix-config/modules/hardware/scheduler.nix
2024-04-16 21:31:31 +02:00

20 lines
352 B
Nix

{config, lib, ...}:
with lib;
let
cfg = config.kop.hardware.scheduler;
in
{
options.kop.hardware.scheduler = {
enable = mkEnableOption "Enables scheduler";
};
config = mkIf cfg.enable {
services.system76-scheduler = {
enable = true;
};
hardware.system76.enableAll = true;
};
}