From ef8619e2c59fe50c503f12bd48fa84db85ab512f Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 15 Aug 2022 08:27:05 +0200 Subject: [PATCH] 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. --- home/home.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/home.nix b/home/home.nix index c75967b..a99a2a8 100644 --- a/home/home.nix +++ b/home/home.nix @@ -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";