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.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/overlays/quickshell/default.nix b/overlays/quickshell/default.nix
new file mode 100644
index 00000000..7c4a263d
--- /dev/null
+++ b/overlays/quickshell/default.nix
@@ -0,0 +1,14 @@
1{ final, prev, sources, ... }:
2{
3 quickshell = prev.quickshell.overrideAttrs (oldAttrs: {
4 inherit (sources.quickshell) version src;
5
6 buildInputs = (oldAttrs.buildInputs or []) ++ [ final.polkit.dev ];
7
8 patches = (oldAttrs.patches or []) ++ [
9 ./lock-state-changed.patch
10 ./pipewire.patch
11 ./io.patch
12 ];
13 });
14}