17 lines
304 B
Nix
17 lines
304 B
Nix
{ options, config, lib, pkgs, ... }:
|
|
with lib;
|
|
with lib.custom;
|
|
let
|
|
cfg = config.modules.hardware.sensors;
|
|
in {
|
|
options.modules.hardware.sensors = {
|
|
enable = mkBoolOpt false;
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
user.packages = [
|
|
pkgs.lm_sensors
|
|
];
|
|
};
|
|
}
|