Add initial project files and configuration.

This commit is contained in:
2026-02-25 21:01:28 -05:00
commit 3da867f69f
7 changed files with 4216 additions and 0 deletions

19
flake.nix Normal file
View File

@@ -0,0 +1,19 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
dnscontrol
];
};
}
);
}