diff options
| author | seth <[email protected]> | 2023-07-19 16:52:00 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-07-19 16:52:00 -0400 |
| commit | eb5514977042b87a2729304bd8a3762f78a015e7 (patch) | |
| tree | cfd21085153a5e320e2d4a60894772c0a134eff9 /parts/overlays/fish.nix | |
| parent | 0cbc3f025cf5aad554b1c4294e98409748c1fe07 (diff) | |
overlay: init
Diffstat (limited to 'parts/overlays/fish.nix')
| -rw-r--r-- | parts/overlays/fish.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/parts/overlays/fish.nix b/parts/overlays/fish.nix new file mode 100644 index 0000000..289c640 --- /dev/null +++ b/parts/overlays/fish.nix @@ -0,0 +1,10 @@ +_: prev: { + fish = prev.symlinkJoin { + inherit (prev.fish) passthru; + name = "fish-nodesktop"; + paths = [prev.fish]; + postBuild = '' + rm $out/share/applications/fish.desktop + ''; + }; +} |
