Merge pull request #72584 from andir/homeInPath-false

nixos: default `environment.homeBinInPath` to false
This commit is contained in:
worldofpeace 2019-11-26 12:33:22 +00:00 committed by GitHub
commit ebce2e0c68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -186,6 +186,13 @@
The osquery module has been removed.
</para>
</listitem>
<listitem>
<para>
Going forward, <literal>~/bin/<literal> in the users home directory will no longer be in <literal>PATH</literal> by default.
If you depend on this you should set the option <literal>environment.homeBinInPath</literal> to <literal>true</literal>.
The aforementioned option was added this release.
</para>
</listitem>
</itemizedlist>
</section>

View File

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