feat: lots of things, really

This commit is contained in:
Kat Inskip 2024-11-13 19:30:43 -05:00
parent 5448280ec8
commit 185833d1fb
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
28 changed files with 200 additions and 168 deletions

View file

@ -1,12 +1,9 @@
{
inputs,
...
}@args:
inputs.utils.lib.eachDefaultSystem (system: let
newArgs = args // { inherit system; };
in {
packages = {
nf-actions-test = import ./nf-actions-test.nix newArgs;
nf-generate = import ./nf-generate.nix newArgs;
};
})
{inputs, ...} @ args:
inputs.utils.lib.eachDefaultSystem (system: let
newArgs = args // {inherit system;};
in {
packages = {
nf-actions-test = import ./nf-actions-test.nix newArgs;
nf-generate = import ./nf-generate.nix newArgs;
};
})