blob: 8325b8649d7baec210977e35a40789a0a7170a8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# 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; }; };
}
|