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 = {