Add a few languages and nix-shell alias to run zsh

This commit is contained in:
zuma 2025-04-13 18:52:56 +02:00
parent 288090edbe
commit d44435832a
3 changed files with 8 additions and 2 deletions

View file

@ -2,19 +2,20 @@
programs.zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
shellAliases = {
update = "sudo nixos-rebuild switch --flake /home/zuma/nix_files#t0urn3s0l";
connect-h4ppy = "mosh --ssh=\"ssh -p 72\" globuzma@87.231.223.91";
cat = "bat";
ls = "eza --time-style=relative --git --octal-permissions --icons --binary -lg";
calc = "eva";
nix-shell = "nix-shell --run zsh";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "robbyrussell";
};
autosuggestion.enable = true;
};
programs.starship = {