2024-05-03 20:29:10 +02:00
|
|
|
{
|
|
|
|
description = "An http server that calls nsupdate internally";
|
2024-05-09 00:59:43 +02:00
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
|
|
systems.url = "github:nix-systems/default";
|
2024-10-12 22:29:38 +02:00
|
|
|
flake-parts = {
|
|
|
|
url = "github:hercules-ci/flake-parts";
|
|
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
};
|
2024-10-26 13:23:22 +02:00
|
|
|
treefmt-nix = {
|
|
|
|
url = "github:numtide/treefmt-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-05-09 00:59:43 +02:00
|
|
|
};
|
2024-05-03 20:29:10 +02:00
|
|
|
|
2024-09-30 16:14:02 +02:00
|
|
|
outputs =
|
2024-10-12 22:29:38 +02:00
|
|
|
inputs:
|
|
|
|
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
2024-10-26 13:23:22 +02:00
|
|
|
imports = [ ./flake-modules ];
|
2024-10-12 22:29:38 +02:00
|
|
|
systems = import inputs.systems;
|
2024-09-30 16:14:02 +02:00
|
|
|
};
|
2024-05-03 20:29:10 +02:00
|
|
|
}
|