add(nix): necrolib

This commit is contained in:
Léana 江 2024-02-03 16:49:17 +01:00 committed by Léana 江
parent 059e47563e
commit 76be58fadc
5 changed files with 181 additions and 3 deletions

View file

@ -13,6 +13,8 @@
agenix.url = "github:ryantm/agenix/0.15.0";
nixnur.url = "github:nix-community/NUR";
opam-nix.url = "github:tweag/opam-nix";
};
outputs = {
@ -22,6 +24,7 @@
wired,
agenix,
nixnur,
opam-nix,
...
}: let
argsFor = {system}: {
@ -62,7 +65,10 @@
nurpkgs = args.pkgs;
pkgs = args.pkgs;
};
mypkgs = import ./mypkgs {pkgs = args.pkgs;};
mypkgs = import ./mypkgs {
pkgs = args.pkgs;
inherit opam-nix;
};
hostname = hostname;
};