Eelco Dolstra
Eelco Dolstra
I agree that those flags should not be removed, and there is no reason to remove them..
Ideally we would have subclasses of `LocalDerivationGoal` that provide the platform-specific code for building (such as sandboxing). Or create some abstract interface for build execution that `LocalDerivationGoal` can use.
This means that Nix fails in this bit of code: ```c++ /* Drop additional groups here because we can't do it after we've created the new user namespace. */ if...
Team discussion: * This would be a useful feature. It can be implemented in `MixEnvironment`. Probably `nix run` should inherit from `MixEnvironment` as well, that way all environment-related flags would...
Can you try Nix >= 2.25? The tarball cache should be faster thanks to #11330.
> When Nix has performed a derivation, the output is moved from the temporary directory in which it currently resides to /nix/store. Note that the output that gets moved is...
@DamienCassou Can you reproduce that with a more recent Nix version? I couldn't reproduce it (either with 2.28.5 or master on macOS). I tried: ``` > cat foo.nix ~/crash/x {...
It means that the registry entry is only used to rewrite the given flakeref if it's exactly equal to the `from` of the entry. This is useful if you have...
It's a subset of Nix that doesn't allow computation in the flake metadata attributes. So e.g. `outputs` cannot be a function application like `import ./outputs.nix`, it must be a function...