diff --git a/stylix/overlays.nix b/stylix/overlays.nix index f51aecc99..aefb45e45 100644 --- a/stylix/overlays.nix +++ b/stylix/overlays.nix @@ -3,6 +3,7 @@ inputs: lib, pkgs, config, + options, ... }: { @@ -14,7 +15,14 @@ inputs: file = import f; attrs = if builtins.typeOf file == "lambda" then - file { inherit lib pkgs config; } + file { + inherit + lib + pkgs + config + options + ; + } else file; in