aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/cli/shell.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-25 17:19:40 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-25 17:20:05 -0700
commite6852f1cd8fd10c2f06b553f5626e3fc9bd99561 (patch)
tree4fc304ff272fee18e14724f0456c63c593da0aa8 /users/fcuny/cli/shell.nix
parentdocs: add more documentation! (diff)
downloadinfra-e6852f1cd8fd10c2f06b553f5626e3fc9bd99561.tar.gz
shell: switch from zsh to fish
why not ?
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
+ '';
+ };
+}