feat(zsh): add zsh as default user shell
This commit is contained in:
parent
8b69346b1f
commit
3478304fb8
4 changed files with 30 additions and 0 deletions
14
homes/x86_64-linux/rafiq/programs/zsh.nix
Normal file
14
homes/x86_64-linux/rafiq/programs/zsh.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletions = true;
|
||||
autosuggestion = true;
|
||||
enableVteIntegration = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
history.share = true;
|
||||
history.size = 10000;
|
||||
history.ignoreDups = true;
|
||||
history.ignoreSpace = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue