home: Install symlinks to ~/.local/bin

This commit is contained in:
Alexander Kobjolke 2021-11-29 10:06:02 +01:00
parent 33fb8148b2
commit ce5175a482

View file

@ -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" ];
}