bonfire/modules/hardware/sensors.nix
2023-06-06 23:18:09 +05:00

17 lines
304 B
Nix

{ options, config, lib, pkgs, ... }:
with lib;
with lib.custon;
let
cfg = config.modules.hardware.sensors;
in {
options.modules.hardware.sensors = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
user.packages = [
pkgs.lm_sensors
];
};
}