webnsupdate/flake.nix
Jalil David Salamé Messina 3affd1b8b5
All checks were successful
/ check-renovaterc (push) Successful in 3s
/ build (push) Successful in 1s
/ test (push) Successful in 12s
/ report-size (push) Successful in 2s
fix: switch from the gh tarball to the nixpkgs channel
This saves ~15MB from the download makings stuff faster (hopefully).
2025-05-15 17:26:06 +02:00

23 lines
649 B
Nix

{
description = "An http server that calls nsupdate internally";
inputs = {
crane.url = "github:ipetkov/crane";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
systems.url = "github:nix-systems/default";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ ./flake-modules ];
systems = import inputs.systems;
};
}