mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-12-16 05:51:11 +01:00
environment.nix: fix NIX_PATH environment variable
This commit is contained in:
parent
e6c9902ddc
commit
c170d27234
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ in
|
||||||
}
|
}
|
||||||
|
|
||||||
(mkIf (cfg.nixPath != []) {
|
(mkIf (cfg.nixPath != []) {
|
||||||
environment.sessionVariables.NIX_PATH = cfg.nixPath;
|
environment.sessionVariables.NIX_PATH = concatStringsSep ":" cfg.nixPath;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue