nixos: default environment.homeBinInPath to false

This is a more sane default since we do not magically (without opt-in)
pull in binaries from `~/bin`. That is not really an expected behavior
for many users. Users that still want that behavior can now just flip
that switch.
This commit is contained in:
Andreas Rammhold
2019-11-02 14:34:50 +01:00
parent e5b32b9719
commit a06529b7ad
2 changed files with 8 additions and 1 deletions

View File

@@ -122,7 +122,7 @@ in
description = ''
Include ~/bin/ in $PATH.
'';
default = true;
default = false;
type = types.bool;
};