about summary refs log tree commit diff
path: root/nix/profiles/home-manager/fish.nix
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@roblox.com>2024-04-19 09:20:57 -0700
committerFranck Cuny <fcuny@roblox.com>2024-04-19 09:20:57 -0700
commitf5400b6fb0c3cb57a2950b027da41d44204cdcd4 (patch)
tree11c157a4178b6a76b7ba52d402e3c8042e3004f1 /nix/profiles/home-manager/fish.nix
parentmove the `slocalc` to a python script (diff)
downloadworld-f5400b6fb0c3cb57a2950b027da41d44204cdcd4.tar.gz
switch to fish as the default shell
Diffstat (limited to 'nix/profiles/home-manager/fish.nix')
-rw-r--r--nix/profiles/home-manager/fish.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/nix/profiles/home-manager/fish.nix b/nix/profiles/home-manager/fish.nix
new file mode 100644
index 0000000..5a2610c
--- /dev/null
+++ b/nix/profiles/home-manager/fish.nix
@@ -0,0 +1,8 @@
+{ ... }: {
+  programs.fish = {
+    enable = true;
+    interactiveShellInit = ''
+      set fish_greeting ""
+    '';
+  };
+}