16 lines
339 B
Nix
16 lines
339 B
Nix
{
|
|
flake.modules.nixos.yookr-dev =
|
|
{ config, ... }:
|
|
{
|
|
security.pki.certificateFiles = [
|
|
../hosts/zenith/mkcert-rootCA.pem
|
|
../hosts/polaris/mkcert-rootCA.pem
|
|
];
|
|
|
|
networking.extraHosts = ''
|
|
127.0.0.1 local.management.yookr.org
|
|
127.0.0.1 local.dashboard.yookr.org
|
|
'';
|
|
};
|
|
}
|