From 5f0ddd7ea6ce5311d662eb110b661e82c83bf1cc Mon Sep 17 00:00:00 2001 From: Jan Kremer Date: Wed, 18 Feb 2026 17:35:07 +0100 Subject: [PATCH] Add tailscale cli to path --- modules/home-manager/shell/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/modules/home-manager/shell/default.nix b/modules/home-manager/shell/default.nix index 8c6996b..cfb880c 100644 --- a/modules/home-manager/shell/default.nix +++ b/modules/home-manager/shell/default.nix @@ -6,12 +6,15 @@ ./zsh.nix ]; - home.shellAliases = { - "deploy" = "ssh -t galanthus 'cd ~/.config/nix; git pull --rebase; nh os switch'"; - "mv" = "mv -i"; - "rm" = "trash"; - "tree" = "lt"; - "zz" = "z -"; + home = { + shellAliases = { + "deploy" = "ssh -t galanthus 'cd ~/.config/nix; git pull --rebase; nh os switch'"; + "mv" = "mv -i"; + "rm" = "trash"; + "zz" = "z -"; + }; + ## Add Tailscale cli to path + sessionPath = [ "/Applications/Tailscale.app/Contents/MacOS" ]; }; programs = {