From ce5175a48256c255367ff9a9cf79d64cf8206074 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Mon, 29 Nov 2021 10:06:02 +0100 Subject: [PATCH] home: Install symlinks to ~/.local/bin --- home/cli.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/cli.nix b/home/cli.nix index e4a3a54..e594ec4 100644 --- a/home/cli.nix +++ b/home/cli.nix @@ -93,6 +93,7 @@ ignores = [ "*~" "*.swp" "result" "dist-newstyle" ]; userEmail = "me@failco.de"; userName = "Alexander Kobjolke"; + aliases = { st = "status"; }; }; gpg = { @@ -117,4 +118,11 @@ defaultCacheTtl = 300; defaultCacheTtlSsh = 300; }; + + home.file.".local" = { + recursive = true; + source = ./local; + }; + + home.sessionPath = [ "$HOME/.local/bin" ]; }