1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-14 13:01:12 +01:00

flake: move the nuschtosSearch input to the dev flake

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-12-05 12:02:18 +01:00 committed by Matt Sturgeon
parent 67ddb71d85
commit 812d7e639d
6 changed files with 101 additions and 93 deletions

View file

@ -1,9 +1,17 @@
{ self, inputs, ... }:
{
self,
config,
inputs,
...
}:
let
# We use a flake input from the dev flake so that this doesn't end up in users' lockfiles.
inherit (config.partitions.dev.module.inputs) nuschtosSearch;
in
{
perSystem =
{
config,
inputs',
system,
...
}:
@ -15,7 +23,7 @@
nixvim = self;
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
mkNuschtosSearch = nuschtosSearch.packages.${system}.mkSearch;
};
};
}