1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-16 13:28:16 +00:00

Merge pull request #198 from Daniel-V1/fix-bash-completions

Fix Bash Completions
This commit is contained in:
Daiderd Jordan 2020-05-11 22:26:37 +02:00 committed by GitHub
commit 64a4bc854e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,7 +169,10 @@ in
''; '';
environment.variables = environment.variables =
{ EDITOR = mkDefault "nano"; {
XDG_CONFIG_DIRS = map (path: path + "/etc/xdg") cfg.profiles;
XDG_DATA_DIRS = map (path: path + "/share") cfg.profiles;
EDITOR = mkDefault "nano";
PAGER = mkDefault "less -R"; PAGER = mkDefault "less -R";
}; };