about summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2019-11-02 14:34:50 +0100
committerAndreas Rammhold <andreas@rammhold.de>2019-11-26 12:44:12 +0100
commita06529b7adbfe39e06c10d0c539418d130f2fecc (patch)
treee3e07eb9e44ff8514aa75e8bbb58e35368e98088 /nixos/modules/config
parente5b32b9719757ce10a6804cba58aa266640ad0b8 (diff)
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.
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/shells-environment.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/shells-environment.nix b/nixos/modules/config/shells-environment.nix
index b79e16cd79796..a0a20228a7422 100644
--- a/nixos/modules/config/shells-environment.nix
+++ b/nixos/modules/config/shells-environment.nix
@@ -122,7 +122,7 @@ in
       description = ''
         Include ~/bin/ in $PATH.
       '';
-      default = true;
+      default = false;
       type = types.bool;
     };