mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
17 lines
461 B
Nix
17 lines
461 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.swarselsystems.cpuCount = lib.mkOption {
|
|
type = lib.types.int;
|
|
default = 8;
|
|
};
|
|
options.swarselsystems.temperatureHwmon.isAbsolutePath = lib.mkEnableOption "absolute temperature path";
|
|
options.swarselsystems.temperatureHwmon.path = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
};
|
|
options.swarselsystems.temperatureHwmon.input-filename = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
};
|
|
}
|