Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions wrapperModules/q/quickshell/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,15 @@ in
The quickshell shell.qml configuration file.

Provide either inlined configuration or reference an external file.
It is used by quickshell using `--path`.
'';
};
configDir = mkOption {
type = wlib.types.linkable;
default = config.generated.placeholder;
description = ''
The full quickshell configuration directory.

It is passed to quickshell using `--path`.
'';
};
components = mkOption {
Expand All @@ -49,7 +57,7 @@ in
};

config.package = mkDefault pkgs.quickshell;
config.flags."--path" = config.generated.placeholder;
config.flags."--path" = config.configDir;

config.passthru.generatedConfigDir = "${
config.wrapper.${config.generated.output}
Expand Down