19 lines
242 B
Nix
19 lines
242 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.module.hwmon;
|
|
in {
|
|
options.module.hwmon = {
|
|
path = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
};
|
|
file = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
};
|
|
};
|
|
}
|