From 7cb5082b5b2c8bb2bfa730fbbbc0eaf263435d6c Mon Sep 17 00:00:00 2001 From: Madeleine Sydney Date: Fri, 3 Jan 2025 17:45:36 -0700 Subject: [PATCH] feat: Set aliases in Bash Simply enabling `programs.bash` in home-manager does the trick. }:) --- .gitignore | 1 + users/crumb/programs/bash.nix | 7 +++++++ users/crumb/programs/git.nix | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 users/crumb/programs/bash.nix diff --git a/.gitignore b/.gitignore index e69de29..05befca 100755 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/users/crumb/programs/emacs/eln-cache diff --git a/users/crumb/programs/bash.nix b/users/crumb/programs/bash.nix new file mode 100644 index 0000000..4547908 --- /dev/null +++ b/users/crumb/programs/bash.nix @@ -0,0 +1,7 @@ +{ config, lib, pkgs, ... }: + +{ + programs.bash = { + enable = true; + }; +} diff --git a/users/crumb/programs/git.nix b/users/crumb/programs/git.nix index 1a21819..a5bb04a 100644 --- a/users/crumb/programs/git.nix +++ b/users/crumb/programs/git.nix @@ -44,7 +44,7 @@ in lib.mkMerge [ jgp = "jj git push"; jgr = "jj git remote"; jgcl = "jj git clone"; - js = "jj st"; + js = "jj status"; jn = "jj new"; jd = "jj describe"; jdi = "jj diff";