From 16c0b7ce0cf0a6286554a3bbe60c636871fb75c9 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 18 Aug 2025 15:40:09 -0400 Subject: initial commit --- sh.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sh.nix (limited to 'sh.nix') diff --git a/sh.nix b/sh.nix new file mode 100644 index 0000000..57f77dc --- /dev/null +++ b/sh.nix @@ -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; + }; +} -- cgit v1.3.1