This commit is contained in:
mjallen18
2025-11-12 20:01:54 -06:00
parent b42d9eff71
commit c2766e82af
4 changed files with 20 additions and 60 deletions

View File

@@ -23,18 +23,6 @@ in
description = "Waybar layer (compat). Prefer layout + feature flags.";
};
modules-right = mkOption {
type = listOf str;
default = [ ];
description = "DEPRECATED: use layout.right.";
};
networkInterface = mkOption {
type = str;
default = "wlan0";
description = "DEPRECATED: use network.interface.";
};
extraModules = mkOption {
type = attrs;
default = { };
@@ -132,6 +120,11 @@ in
cpu = mkOption {
type = submodule {
options = {
enable = mkOption {
type = bool;
default = true;
description = "Enable CPU temperature module.";
};
hwmonPath = mkOption {
type = str;
default = "/sys/class/hwmon/hwmon4/temp1_input";