fix: stylix enable option

This commit is contained in:
2025-09-29 11:13:34 +02:00
parent 4fda2670ac
commit 5c2ee58f4d

View File

@@ -95,6 +95,11 @@
description = "Whether to show the window title in the center of the bar"; description = "Whether to show the window title in the center of the bar";
}; };
}; };
stylix = lib.mkOption {
type = lib.types.attrsOf lib.types.anything;
default = { enable = false; };
description = "Stylix configuration passed from the stylix module";
};
}; };
}; };
default = { default = {
@@ -102,6 +107,7 @@
battery.enable = false; battery.enable = false;
height = 40; height = 40;
window_title.enable = true; window_title.enable = true;
stylix.enable = false;
}; };
}; };
}; };