mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
9 lines
202 B
Nix
9 lines
202 B
Nix
|
{ buildEnv, extendedStdenv }:
|
||
|
|
||
|
{ paths ? [ ], pathsToLink ? [ ], }@args:
|
||
|
|
||
|
buildEnv (args // {
|
||
|
paths = paths ++ [ extendedStdenv ];
|
||
|
pathsToLink = pathsToLink ++ [ "/bin" "/etc" "/share" "/lib" ];
|
||
|
})
|