Correct some strange path expressions.
In flake.nix, all paths are directly converted to store paths: rootDir = ./../.. will be a store path (check with rootDir = builtins.trace ./../.. ./../..)
The before syntax assumed that can be worked around which is wrong.
Types of Changes
What types of changes does your code introduce? Put an x in the boxes that
apply
[ ] A bug fix (non-breaking change which fixes an issue).
[ ] A new feature (non-breaking change which adds functionality).
[ ] A breaking change (fix or feature that would cause existing
functionality to not work as expected).
[x] A non-productive update (documentation, tooling, etc. if none of the
other choices apply).
Checklist
Put an x in the boxes that apply. You can also fill these out after creating
the PR. If you're unsure about any of them, don't hesitate to ask. We're here to
help! This is simply a reminder of what we are going to look for before merging
your code.
Proposed Changes
Correct some strange path expressions. In
flake.nix
, all paths are directly converted to store paths:rootDir = ./../..
will be a store path (check withrootDir = builtins.trace ./../.. ./../..
) The before syntax assumed that can be worked around which is wrong.Types of Changes
What types of changes does your code introduce? Put an
x
in the boxes that applyChecklist
Put an
x
in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code.Further Comments