3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #31860 from rycee/nixos/bash/fix/inputrc

nixos/bash: mark `inputrc` etc file as default
This commit is contained in:
Graham Christensen 2017-11-20 21:46:54 -05:00 committed by GitHub
commit 3c9b356e10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -197,8 +197,9 @@ in
fi
'';
# Configuration for readline in bash.
environment.etc."inputrc".source = ./inputrc;
# Configuration for readline in bash. We use "option default"
# priority to allow user override using both .text and .source.
environment.etc."inputrc".source = mkOptionDefault ./inputrc;
users.defaultUserShell = mkDefault pkgs.bashInteractive;