Initial dendritic rewrite

This commit is contained in:
2026-04-04 16:46:30 -04:00
parent 06a8e77924
commit f080e311d1
131 changed files with 3342 additions and 3148 deletions

17
modules/hosts/host.nix Normal file
View File

@@ -0,0 +1,17 @@
{
flake.modules.nixos.host =
{ lib, ... }:
{
# ? Could potentially move this directly into the agenix module
options = {
# Host public SSH key (e.g. /etc/ssh/ssh_host_ed25519_key.pub).
# We only set the hostPubkey if one is supplied. For new hosts the pub key will not
# exist until it is generated after the first rebuild.
hostPubkey = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
description = "The public key of the host. Will be null until generated on first rebuild";
};
};
};
}