modules/flake.nix

17 lines
364 B
Nix
Raw Normal View History

2020-12-02 22:16:35 +01:00
{
description = "NixOS modules too specialized to be integrated into the official nixpkgs tree";
outputs = { self, nixpkgs }: {
lib = nixpkgs.lib.extend (self: super: let
callLibs = file: import file { lib = self; };
in {
tinydns = callLibs ./tinydns/lib.nix;
});
nixosModules = {
tinydns = import ./tinydns;
};
};
}