We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb72b47 commit 200fed2Copy full SHA for 200fed2
flake.nix
@@ -23,9 +23,11 @@
23
devShells = forEachSystem (system: pkgs: rec {
24
default = import ./shell.nix {
25
inherit pkgs;
26
- quickshell = self.packages.${system}.quickshell.override {
27
- stdenv = pkgs.clangStdenv;
28
- };
+ quickshell = self.packages.${system}.quickshell.override (prev: {
+ quickshell-unwrapped = prev.quickshell-unwrapped.override {
+ stdenv = pkgs.clangStdenv;
29
+ };
30
+ });
31
};
32
});
33
0 commit comments