Files
nix-config/modules/hardware/scheduler.nix
2024-04-17 16:33:12 +02:00

20 lines
358 B
Nix

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