fix(nix): update system applications environment configuration
- Changed pathsToLink from string "/Applications" to list [ "/Applications" ] in system environment build - Maintains consistent configuration format for environment paths
This commit is contained in:
parent
b9d5e775d2
commit
270f3fe252
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ in
|
|||
env = pkgs.buildEnv {
|
||||
name = "system-applications";
|
||||
paths = config.environment.systemPackages;
|
||||
pathsToLink = "/Applications";
|
||||
pathsToLink = [ "/Applications" ];
|
||||
};
|
||||
in
|
||||
lib.mkForce ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue