12 lines
428 B
Nix
12 lines
428 B
Nix
{
|
|
description = "dnsc IaC config utilizing, Nix (flakes), NixOS, Nix Darwin and flake-parts";
|
|
|
|
inputs = {
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
import-tree.url = "github:vic/import-tree";
|
|
flake-file.url = "github:vic/flake-file";
|
|
};
|
|
|
|
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
|
|
}
|