[Nix] Adds MCP config.

This commit is contained in:
2025-03-02 14:35:06 -08:00
parent 4c5ea117f9
commit 871a065ea8
24 changed files with 1062 additions and 16 deletions
+12
View File
@@ -0,0 +1,12 @@
{ config, lib, ...}:
{
options = with lib; with types; {
domainName = mkOption { type = str; };
localNet = mkOption { type = str; };
};
config = {
domainName = "havenisms.com";
localNet = "192.168.0.0/16";
};
}