Files
nix-config/modules/hardware/scheduler.nix
2025-03-18 16:27:20 +01:00

20 lines
320 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;
};
}