Merge pull request 'move zerotier secret generation into nixos module' (#347) from Mic92-docs into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/347
This commit is contained in:
Mic92
2023-09-26 16:17:44 +00:00

View File

@@ -45,8 +45,8 @@ in
{
options.clan.networking.zerotier = {
networkId = lib.mkOption {
type = lib.types.str;
default = config.clanCore.secrets.zerotier.facts."zerotier-network-id".value;
type = lib.nullOr lib.types.str;
default = null;
description = ''
zerotier networking id
'';
@@ -87,6 +87,7 @@ in
};
})
(lib.mkIf cfg.controller.enable {
clan.networking.zerotier.networkId = lib.mkDefault config.clanCore.secrets.zerotier.facts."zerotier-network-id".value;
# only the controller needs to have the key in the repo, the other clients can be dynamic
# we generate the zerotier code manually for the controller, since it's part of the bootstrap command
clanCore.secrets.zerotier = {