summaryrefslogtreecommitdiff
path: root/overlay/fish.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-10 20:42:56 -0400
committerseth <[email protected]>2024-05-10 21:30:32 -0400
commit7b524417514f41c2a72ed77958151fb412f5d6e9 (patch)
tree3dccd6d1b234638d01e7c54abecc8f9e679113fc /overlay/fish.nix
parent641ab65696cefc51d18ca75c53bce5f6ecd496ab (diff)
treewide: remove overlay
don't need it tbh
Diffstat (limited to 'overlay/fish.nix')
-rw-r--r--overlay/fish.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/overlay/fish.nix b/overlay/fish.nix
deleted file mode 100644
index d998ada..0000000
--- a/overlay/fish.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-_: prev: {
- fish =
- if prev.stdenv.isLinux
- then
- prev.symlinkJoin {
- inherit (prev.fish) passthru;
- name = "fish-nodesktop";
- paths = [prev.fish];
- postBuild = ''
- rm -rf $out/share/{applications,icons}
- '';
- }
- else prev.fish;
-}