summaryrefslogtreecommitdiff
path: root/common/programs/fish.nix
diff options
context:
space:
mode:
authorbrustybee <bee@4d2.org>2026-03-07 03:47:19 +0530
committerbrustybee <bee@4d2.org>2026-03-07 03:47:19 +0530
commitb9c9e4a45d59c6df1a794cc24b473e394633effb (patch)
tree34c83c66bd3c20379e593c5023f3710d593a95a5 /common/programs/fish.nix
parentb7ab4668c6dd7d6b153b9bf7ea3923ebe93f1ddd (diff)
Add btop fish rofi and tmux
Diffstat (limited to 'common/programs/fish.nix')
-rw-r--r--common/programs/fish.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/common/programs/fish.nix b/common/programs/fish.nix
new file mode 100644
index 0000000..8814a12
--- /dev/null
+++ b/common/programs/fish.nix
@@ -0,0 +1,30 @@
+{
+ pkgs,
+ ...
+}:
+{
+ programs.fish.enable = true;
+
+ home.packages = with pkgs; [
+ fzf
+ pay-respects
+ ];
+
+ programs.fish = {
+ interactiveShellInit =
+ #fish
+ ''
+ function fish_mode_prompt
+ end
+ set -g fish_greeting ""
+ fish_vi_key_bindings
+ set -U fish_color_user blue
+ set -U fish_color_host normal
+ set -U fish_color_cwd blue
+
+ pay-respects fish | source
+
+ alias fuck='f'
+ '';
+ };
+}