From c9de26d3d8d9561d4e62a4f7d7e6aa181a0d4677 Mon Sep 17 00:00:00 2001 From: Forestcat Date: Mon, 4 Dec 2023 22:03:50 +0100 Subject: [PATCH] added nushell aliases --- home.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/home.nix b/home.nix index 83bf9a1..699d10d 100644 --- a/home.nix +++ b/home.nix @@ -63,9 +63,15 @@ # /etc/profiles/per-user/forestcat/etc/profile.d/hm-session-vars.sh # home.sessionVariables = { - # EDITOR = "emacs"; + EDITOR = "hx"; }; - + programs.nushell = { + enable = true; + shellAliases = { + ll = "ls -l"; + }; + }; + # Let Home Manager install and manage itself. programs.home-manager.enable = true; }