mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
Merge pull request #198 from Daniel-V1/fix-bash-completions
Fix Bash Completions
This commit is contained in:
commit
64a4bc854e
1 changed files with 4 additions and 1 deletions
|
@ -169,7 +169,10 @@ in
|
|||
'';
|
||||
|
||||
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";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue