From 5c2ee58f4d8d016060d1f8bdd499657e140b01ce Mon Sep 17 00:00:00 2001 From: Makesesama Date: Mon, 29 Sep 2025 11:13:34 +0200 Subject: [PATCH] fix: stylix enable option --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index b95d896..1217095 100644 --- a/flake.nix +++ b/flake.nix @@ -95,6 +95,11 @@ 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 = { @@ -102,6 +107,7 @@ battery.enable = false; height = 40; window_title.enable = true; + stylix.enable = false; }; }; };