bonfire/modules/hardware/sensors.nix

17 lines
304 B
Nix
Raw Normal View History

2023-06-06 23:18:09 +05:00
{ options, config, lib, pkgs, ... }:
with lib;
2023-06-07 01:28:05 +05:00
with lib.custom;
2023-06-06 23:18:09 +05:00
let
cfg = config.modules.hardware.sensors;
in {
options.modules.hardware.sensors = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
user.packages = [
pkgs.lm_sensors
];
};
}