restructure

This commit is contained in:
2026-04-22 09:46:04 -05:00
parent cff3aec197
commit 03bec1dcaf
57 changed files with 35 additions and 44 deletions

View File

@@ -0,0 +1,40 @@
{ ... }: {
flake.homeModules.nathan = { lib, ... }: {
programs.zsh = {
enable = true;
initContent = lib.mkOrder 1200 ''
bindkey ' ' magic-space
'';
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ls = "eza";
ll = "ls -l";
ksh = "kitten ssh";
vi = "nvim";
vim = "nvim";
python = "python3.14";
python3 = "python3.14";
};
history = {
size = 5000;
ignoreAllDups = true;
ignoreSpace = true;
share = true;
};
};
};
}