summaryrefslogtreecommitdiff
path: root/seth/shell/fish.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2022-12-01 22:17:21 -0500
committerseth <[email protected]>2022-12-01 22:17:39 -0500
commitaca5eff381f76bc29f25191efc281ccf50cf0e3e (patch)
treee265f9ad2048225a56beba60197fb2b63f848af5 /seth/shell/fish.nix
parentae4332f4e2f6c95289f43e0c233ee75066669669 (diff)
initial commit of files
Diffstat (limited to 'seth/shell/fish.nix')
-rw-r--r--seth/shell/fish.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/seth/shell/fish.nix b/seth/shell/fish.nix
new file mode 100644
index 0000000..a5a48a0
--- /dev/null
+++ b/seth/shell/fish.nix
@@ -0,0 +1,34 @@
+{ 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=";
+ };
+ }
+
+ ];
+ };
+}