diff --git a/home.nix b/home.nix index e220579..7558438 100644 --- a/home.nix +++ b/home.nix @@ -10,12 +10,6 @@ # manage. home.username = "jas"; home.homeDirectory = "/home/jas"; - home.sessionPath = [ - "\${config.home.homeDirectory}/bin" - "\${config.home.homeDirectory}/.local/bin" - "\${config.home.homeDirectory}/go/bin" - ]; - home.stateVersion = "24.05"; # Please read the comment before changing. # The home.packages option allows you to install Nix packages into your @@ -93,6 +87,9 @@ enableCompletion = true; autosuggestion.enable = true; autocd = false; + envExtra = '' + export PATH="$HOME/bin:$HOME/.local/bin:/usr/sbin:$PATH" + ''; history = { extended = true; ignoreAllDups = false;