summaryrefslogtreecommitdiff
path: root/seth/shell/fish.nix
diff options
context:
space:
mode:
Diffstat (limited to 'seth/shell/fish.nix')
-rw-r--r--seth/shell/fish.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/seth/shell/fish.nix b/seth/shell/fish.nix
deleted file mode 100644
index a5a48a0..0000000
--- a/seth/shell/fish.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ config, lib, pkgs, ...}:
-
-{
- programs.fish = {
- enable = true;
- plugins = [
- {
- name = "autopair-fish";
- src = pkgs.fishPlugins.autopair-fish;
- }
-
- {
- name = "puffer-fish";
- src = pkgs.fetchFromGitHub {
- owner = "nickeb96";
- repo = "puffer-fish";
- rev = "fd0a9c95da59512beffddb3df95e64221f894631";
- sha256 = "sha256-aij48yQHeAKCoAD43rGhqW8X/qmEGGkg8B4jSeqjVU0=";
- };
- }
-
- {
- name = "catppuccin-fish";
- src = pkgs.fetchFromGitHub {
- owner = "catppuccin";
- repo = "fish";
- rev = "8d0b07ad927f976708a1f875eb9aacaf67876137";
- sha256 = "sha256-/JIKRRHjaO2jC0NNPBiSaLe8pR2ASv24/LFKOJoZPjk=";
- };
- }
-
- ];
- };
-}