2024-11-16 04:43:59 +03:00
|
|
|
# Hardware monitor configuration.
|
2024-12-18 09:40:11 +03:00
|
|
|
{ lib, ... }:
|
2024-11-04 04:37:29 +03:00
|
|
|
{
|
2024-12-18 09:40:11 +03:00
|
|
|
options.module.hwmon = {
|
|
|
|
path = lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
type = lib.types.str;
|
|
|
|
};
|
|
|
|
file = lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
type = lib.types.str;
|
|
|
|
};
|
|
|
|
};
|
2024-11-04 04:37:29 +03:00
|
|
|
}
|