fix eval
This commit is contained in:
parent
762f86b439
commit
be0b752ca2
2 changed files with 7 additions and 7 deletions
10
flake.nix
10
flake.nix
|
@ -140,13 +140,9 @@
|
|||
config.allowUnfree = true;
|
||||
overlays =
|
||||
[
|
||||
(
|
||||
_: _:
|
||||
inputs'
|
||||
// {
|
||||
inputs = inputs';
|
||||
}
|
||||
)
|
||||
(_: _: {
|
||||
inputs = inputs';
|
||||
})
|
||||
self.overlays.default
|
||||
]
|
||||
++ (
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
self,
|
||||
rust-overlay,
|
||||
nix-vscode-extensions,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
|
@ -28,6 +29,9 @@ with lib;
|
|||
if !inTester then
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(_: _: {
|
||||
inherit inputs;
|
||||
})
|
||||
self.overlays.default
|
||||
(import rust-overlay)
|
||||
nix-vscode-extensions.overlays.default
|
||||
|
|
Loading…
Reference in a new issue