From f7b3aba8839ff20261045dd3e57a492bdc4e169d Mon Sep 17 00:00:00 2001 From: ooks-io Date: Mon, 15 Jul 2024 20:41:13 +1200 Subject: [PATCH] feat(home:fish): add nh rebuild abbr --- home/modules/console/shell/fish/aliases.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home/modules/console/shell/fish/aliases.nix b/home/modules/console/shell/fish/aliases.nix index c44691b..316952e 100644 --- a/home/modules/console/shell/fish/aliases.nix +++ b/home/modules/console/shell/fish/aliases.nix @@ -2,7 +2,7 @@ let inherit (lib) mkIf getExe; - inherit (pkgs) bat eza dust; + inherit (pkgs) bat eza dust nh; cfg = config.ooknet.shell.fish; admin = osConfig.ooknet.host.admin; @@ -20,6 +20,8 @@ in shellAbbrs = { f = "cd $FLAKE"; fe = "$EDITOR $FLAKE"; + + nswitch = "${getExe nh} os switch"; }; }; };