only inherit inputs

This commit is contained in:
do butterflies cry? 2026-02-15 13:43:19 +10:00
parent 93aa29dc10
commit 07ad32475f
3 changed files with 15 additions and 18 deletions

View file

@ -22,7 +22,10 @@
nt.url = "github:cry128/nt";
deploy-rs.url = "github:serokell/deploy-rs";
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
@ -31,9 +34,9 @@
...
} @ inputs:
import ./cerulean
(inputs
// {
inherit (nixpkgs) lib;
inherit (nt) mix;
});
{
inherit inputs;
inherit (nixpkgs) lib;
inherit (nt) mix;
};
}