nix: add overlay

This commit is contained in:
outfoxxed 2025-09-28 20:24:43 -07:00
parent 2119eb2205
commit b9905ef824
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E
5 changed files with 22 additions and 11 deletions

5
overlay.nix Normal file
View file

@ -0,0 +1,5 @@
{ rev ? null }: (final: prev: {
quickshell = final.callPackage ./default.nix {
gitRev = rev;
};
})