Use installed version of tools from CLI

Do not set to raw packages, but to the environment specifics.
Let $PATH jump in to find the tools.
This commit is contained in:
Daniel Siepmann 2022-08-15 08:27:05 +02:00
parent eb6c58f076
commit ef8619e2c5
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -44,9 +44,9 @@ in {
};
sessionVariables = {
TERMINAL = "${pkgs.st}/bin/st";
EDITOR = "${pkgs.neovim}/bin/nvim";
SHELL = "${pkgs.zsh}/bin/zsh";
TERMINAL = "st";
EDITOR = "nvim";
SHELL = "zsh";
TYPO3_CONTEXT = "Development/dsiepmann";
TYPO3_ADDITIONAL_CONFIGURATION = "/home/daniels/.local/share/typo3-configuration/AdditionalConfiguration.inc.php";