setup zsh in rico
This commit is contained in:
parent
3cc4888ec1
commit
57ebbae76e
2 changed files with 11 additions and 5 deletions
|
@ -2,10 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
|
./zsh.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
|
||||||
zsh.enable = true;
|
|
||||||
};
|
|
||||||
environment.pathsToLink = ["/share/zsh"];
|
|
||||||
}
|
}
|
||||||
|
|
10
hosts/rico2/programs/zsh.nix
Normal file
10
hosts/rico2/programs/zsh.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ ... }: {
|
||||||
|
programs = {
|
||||||
|
zsh = {
|
||||||
|
enable = true;
|
||||||
|
autosuggestions.enable = true;
|
||||||
|
syntaxHighlighting.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
environment.pathsToLink = ["/share/zsh"];
|
||||||
|
}
|
Loading…
Reference in a new issue