summaryrefslogtreecommitdiff
path: root/overlay/fish.nix
diff options
context:
space:
mode:
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;
-}