diff options
Diffstat (limited to 'overlays/quickshell')
-rw-r--r-- | overlays/quickshell/default.nix | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/overlays/quickshell/default.nix b/overlays/quickshell/default.nix index d806753f..c01fac20 100644 --- a/overlays/quickshell/default.nix +++ b/overlays/quickshell/default.nix | |||
@@ -1,11 +1,13 @@ | |||
1 | { final, prev, ... }: | 1 | { final, prev, sources, ... }: |
2 | { | 2 | { |
3 | quickshell = prev.quickshell.overrideAttrs (oldAttrs: { | 3 | quickshell = prev.quickshell.overrideAttrs (oldAttrs: { |
4 | inherit (sources.quickshell) version src; | ||
5 | |||
4 | patches = (oldAttrs.patches or []) ++ [ | 6 | patches = (oldAttrs.patches or []) ++ [ |
5 | ./greetd-response.patch | 7 | ./greetd-response.patch |
6 | ./lock-state-changed.patch | 8 | ./lock-state-changed.patch |
7 | ./pipewire.patch | 9 | ./pipewire.patch |
8 | ./io.patch | 10 | ./io.patch |
9 | ]; | 11 | ]; |
10 | }); | 12 | }); |
11 | } | 13 | } |