diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-04-05 17:51:47 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-04-05 17:51:47 -0700 |
| commit | 971ffcae9bff15eb6ac6723b4d0bba7f7c54bf0f (patch) | |
| tree | 428d6a111c5128d1595711260f7245b80a1c9c9a /modules/services/thermald/default.nix | |
| parent | carmel: enable the sound (diff) | |
| download | infra-971ffcae9bff15eb6ac6723b4d0bba7f7c54bf0f.tar.gz | |
create a profile for laptop
Diffstat (limited to 'modules/services/thermald/default.nix')
| -rw-r--r-- | modules/services/thermald/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/services/thermald/default.nix b/modules/services/thermald/default.nix new file mode 100644 index 0000000..8325b86 --- /dev/null +++ b/modules/services/thermald/default.nix @@ -0,0 +1,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; }; }; +} |
