setup zsh in rico

This commit is contained in:
Adithya 2023-05-27 20:09:10 +05:30
parent 3cc4888ec1
commit 57ebbae76e
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 11 additions and 5 deletions

View file

@ -2,10 +2,6 @@
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
programs = {
zsh.enable = true;
};
environment.pathsToLink = ["/share/zsh"];
}

View file

@ -0,0 +1,10 @@
{ ... }: {
programs = {
zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
};
};
environment.pathsToLink = ["/share/zsh"];
}