Stable terminal environment with Home-Manager
This commit is contained in:
@@ -63,4 +63,40 @@
|
||||
theme = "sonicradish";
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.users.nichkara = { ... }: {
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
autocd = true;
|
||||
|
||||
autosuggestion = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
syntaxHighlighting = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
history = {
|
||||
size = 4096;
|
||||
ignoreSpace = true;
|
||||
ignorePatterns = [ ];
|
||||
saveNoDups = true;
|
||||
ignoreAllDups = true;
|
||||
};
|
||||
|
||||
setOptions = [
|
||||
"HIST_IGNORE_ALL_DUPS"
|
||||
];
|
||||
|
||||
shellAliases = {
|
||||
ll = "ls -lh";
|
||||
nix-check = "nixos-rebuild build";
|
||||
nix-update = "sudo nixos-rebuild switch";
|
||||
sirc = "ssh -t nichkara.eu tmux new-session -A -s weechat weechat";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user