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;
|
config.allowUnfree = true;
|
||||||
overlays =
|
overlays =
|
||||||
[
|
[
|
||||||
(
|
(_: _: {
|
||||||
_: _:
|
inputs = inputs';
|
||||||
inputs'
|
})
|
||||||
// {
|
|
||||||
inputs = inputs';
|
|
||||||
}
|
|
||||||
)
|
|
||||||
self.overlays.default
|
self.overlays.default
|
||||||
]
|
]
|
||||||
++ (
|
++ (
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
self,
|
self,
|
||||||
rust-overlay,
|
rust-overlay,
|
||||||
nix-vscode-extensions,
|
nix-vscode-extensions,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
|
@ -28,6 +29,9 @@ with lib;
|
||||||
if !inTester then
|
if !inTester then
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
|
(_: _: {
|
||||||
|
inherit inputs;
|
||||||
|
})
|
||||||
self.overlays.default
|
self.overlays.default
|
||||||
(import rust-overlay)
|
(import rust-overlay)
|
||||||
nix-vscode-extensions.overlays.default
|
nix-vscode-extensions.overlays.default
|
||||||
|
|
Loading…
Reference in a new issue