diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-03-25 17:19:40 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-03-25 17:20:05 -0700 |
| commit | e6852f1cd8fd10c2f06b553f5626e3fc9bd99561 (patch) | |
| tree | 4fc304ff272fee18e14724f0456c63c593da0aa8 /users/fcuny/cli/shell.nix | |
| parent | docs: add more documentation! (diff) | |
| download | infra-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.nix | 10 |
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 + ''; + }; +} |
