diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2020-05-11 22:26:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-11 22:26:37 +0200 |
| commit | 64a4bc854e7ac404a77224b03485284df56b0d75 (patch) | |
| tree | a424941a073f9b973c24575db8d9555b38311068 /modules | |
| parent | f885aff4c9efca0dcb553fec9a5029f4995adb30 (diff) | |
| parent | 5796faef94b9b02fbaf64dd3a779a8421c18f20e (diff) | |
Merge pull request #198 from Daniel-V1/fix-bash-completions
Fix Bash Completions
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/environment/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/environment/default.nix b/modules/environment/default.nix index d0fb128..2791c45 100644 --- a/modules/environment/default.nix +++ b/modules/environment/default.nix @@ -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"; }; |
