nix/module/Hwmon.nix

19 lines
242 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{
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;
};
};
}