summaryrefslogtreecommitdiff
path: root/overlays/quickshell/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/quickshell/default.nix')
-rw-r--r--overlays/quickshell/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/overlays/quickshell/default.nix b/overlays/quickshell/default.nix
new file mode 100644
index 00000000..622d69a3
--- /dev/null
+++ b/overlays/quickshell/default.nix
@@ -0,0 +1,10 @@
1{ final, prev, ... }:
2{
3 quickshell = prev.quickshell.overrideAttrs (oldAttrs: {
4 patches = (oldAttrs.patches or []) ++ [
5 ./greetd-response.patch
6 ./lock-state-changed.patch
7 ./pipewire.patch
8 ];
9 });
10}