This commit is contained in:
biscuit
2025-05-13 11:22:45 -05:00
parent 94f91e9a6d
commit 5d7d8e4b4f
6 changed files with 48 additions and 34 deletions
+18
View File
@@ -0,0 +1,18 @@
{ ... }: {
programs.zsh = {
enable = true;
enableCompletion = true;
# autosuggestions.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ll = "ls -l";
upd = "sudo nixos-rebuild switch --flake /home/biscuit/Nixos/#biscuit";
hupd = "home-manager switch --flake /home/biscuit/Nixos/#biscuit --impure";
};
history.size = 10000;
oh-my-zsh = {
enable = true;
theme = "robbyrussell";
};
};
}