about summary refs log tree commit diff
path: root/users/fcuny/cli/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/cli/shell.nix')
-rw-r--r--users/fcuny/cli/shell.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/users/fcuny/cli/shell.nix b/users/fcuny/cli/shell.nix
new file mode 100644
index 0000000..0e6a790
--- /dev/null
+++ b/users/fcuny/cli/shell.nix
@@ -0,0 +1,10 @@
+{ config, lib, pkgs, ... }:
+
+{
+  programs.fish = {
+    enable = true;
+    interactiveShellInit = ''
+      set fish_greeting
+    '';
+  };
+}