mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-16 05:18:17 +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 =
|
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";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue