diff options
| author | Fuwn <[email protected]> | 2025-01-05 00:44:27 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-01-05 00:44:27 -0800 |
| commit | 797a3c56b23ad2c6f993615e51d09ac8791b8858 (patch) | |
| tree | 9ac04cdd5149e4fc036b6b8dd6aaa8d9637b5bc2 /home | |
| parent | just: default target to hostname (diff) | |
| download | nixos-config-797a3c56b23ad2c6f993615e51d09ac8791b8858.tar.xz nixos-config-797a3c56b23ad2c6f993615e51d09ac8791b8858.zip | |
nara: drop fish, configure zsh
Diffstat (limited to 'home')
| -rw-r--r-- | home/ebisu/nara/default.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/home/ebisu/nara/default.nix b/home/ebisu/nara/default.nix index a89e1a7..7686310 100644 --- a/home/ebisu/nara/default.nix +++ b/home/ebisu/nara/default.nix @@ -5,7 +5,15 @@ home = { stateVersion = "24.11"; - file.".hushlogin".text = ""; + + file = { + ".hushlogin".text = ""; + + ".zshrc".text = '' + source $(brew --prefix)/opt/zsh-vi-mode/share/zsh-vi-mode/zsh-vi-mode.plugin.zsh + source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh + ''; + }; packages = with pkgs; [ nixd |