diff options
| author | Franck Cuny <fcuny@roblox.com> | 2024-05-02 09:47:53 -0700 |
|---|---|---|
| committer | Franck Cuny <fcuny@roblox.com> | 2024-05-02 09:47:53 -0700 |
| commit | 80877ab429df0c84231c0df4131045b1f69bfa25 (patch) | |
| tree | 14d96c537d03420b12293f66868454e449bb2509 /nix/profiles/home-manager/shell.nix | |
| parent | i dont know (diff) | |
| download | infra-80877ab429df0c84231c0df4131045b1f69bfa25.tar.gz | |
drop zsh
Diffstat (limited to '')
| -rw-r--r-- | nix/profiles/home-manager/shell.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nix/profiles/home-manager/shell.nix b/nix/profiles/home-manager/shell.nix index dfa7f7a..1166bac 100644 --- a/nix/profiles/home-manager/shell.nix +++ b/nix/profiles/home-manager/shell.nix @@ -53,6 +53,8 @@ LESSCHARSET = "utf-8"; PAGER = "less"; ASPELL_CONF = "conf ${config.xdg.configHome}/aspell/config;"; + # for some reason, if I don't set this, zsh is picked up and mess up stuff. + SHELL = "${pkgs.fish}/bin/fish"; }; programs.alacritty = { @@ -85,6 +87,7 @@ baseIndex = 1; shortcut = "z"; clock24 = true; + shell = "${pkgs.fish}/bin/fish"; historyLimit = 50000; # Bigger buffer extraConfig = '' setw -g mouse on |
