blob: 8325b8649d7baec210977e35a40789a0a7170a8d (
plain) (
tree)
|
|
# thermal control management
{ config, lib, ... }:
let cfg = config.my.services.thermald;
in {
options.my.services.thermald = {
enable = lib.mkEnableOption "thermald configuration";
};
config = lib.mkIf cfg.enable { services.thermald = { enable = true; }; };
}
|