diff options
| author | Andrew <admonty1@protonmail.com> | 2025-08-18 15:40:09 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-08-18 15:40:09 -0400 |
| commit | 16c0b7ce0cf0a6286554a3bbe60c636871fb75c9 (patch) | |
| tree | ef38bd560f9c08121c4c567997a22359c22b7582 /sh.nix | |
| download | nixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.tar.gz nixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.tar.bz2 nixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.zip | |
initial commit
Diffstat (limited to 'sh.nix')
| -rw-r--r-- | sh.nix | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +{ + config, + lib, + pkgs, + ... +}: +let + myAliases = { + ll = "ls -l"; + ".." = "cd .."; + }; +in +{ + programs.bash = { + enable = true; + shellAliases = myAliases; + }; + programs.zsh = { + enable = true; + shellAliases = myAliases; + }; +} |
