feat: add self-signed cert support and local dev hosts

This commit is contained in:
2026-07-18 10:23:26 +02:00
parent ceeb9669f1
commit d90e394f33
4 changed files with 41 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
flake.modules.nixos.yookr-dev =
{ config, ... }:
{
security.pki.certificateFiles = [
../hosts/${config.facts.machine.name}/mkcert-rootCA.pem
];
networking.extraHosts = ''
127.0.0.1 local.management.yookr.org
'';
};
}