We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c90cbe commit 0a1c748Copy full SHA for 0a1c748
1 file changed
wrapperModules/q/quickshell/module.nix
@@ -27,7 +27,15 @@ in
27
The quickshell shell.qml configuration file.
28
29
Provide either inlined configuration or reference an external file.
30
- It is used by quickshell using `--path`.
+ '';
31
+ };
32
+ configDir = mkOption {
33
+ type = wlib.types.linkable;
34
+ default = config.generated.placeholder;
35
+ description = ''
36
+ The full quickshell configuration directory.
37
+
38
+ It is passed to quickshell using `--path`.
39
'';
40
};
41
components = mkOption {
@@ -49,7 +57,7 @@ in
49
57
50
58
51
59
config.package = mkDefault pkgs.quickshell;
52
- config.flags."--path" = config.generated.placeholder;
60
+ config.flags."--path" = config.configDir;
53
61
54
62
config.passthru.generatedConfigDir = "${
55
63
config.wrapper.${config.generated.output}
0 commit comments