Merge pull request #72584 from andir/homeInPath-false
nixos: default `environment.homeBinInPath` to false
This commit is contained in:
commit
ebce2e0c68
@ -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>
|
||||
|
||||
|
@ -122,7 +122,7 @@ in
|
||||
description = ''
|
||||
Include ~/bin/ in $PATH.
|
||||
'';
|
||||
default = true;
|
||||
default = false;
|
||||
type = types.bool;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user