Files
clan-core/lib/flake-module.nix
Johannes Kirschbauer fca193073e lib.values: init getPrio
This function can be used to get the priority of all values within a module
2024-12-04 17:37:23 +01:00

20 lines
308 B
Nix

{
lib,
inputs,
self,
...
}:
{
imports = [
./jsonschema/flake-module.nix
./inventory/flake-module.nix
./build-clan/flake-module.nix
./values/flake-module.nix
];
flake.lib = import ./default.nix {
inherit lib inputs;
inherit (inputs) nixpkgs;
clan-core = self;
};
}