in
{
environment.systemPackages = with pkgs; [ nebula ];
- systemd.services."nebula@${domain}".serviceConfig.LoadCredentialEncrypted = [
- "${hostName}.key:${inputs.self + "/hosts/${hostName}/nebula/${hostName}.key.cred"}"
- ];
+ systemd.services."nebula@${domain}" = {
+ stopIfChanged = false;
+ serviceConfig.LoadCredentialEncrypted = [
+ "${hostName}.key:${inputs.self}/hosts/${hostName}/nebula/${hostName}.key.cred"
+ ];
+ };
install.target = lib.mkDefault "\"\${NIXOS_TARGET:-root@${config.networking.hostName}.sp}\"";
networking.hosts = {
"${IPv4Prefix}.1" = [ "mermet.sp" ];
services.nebula.networks.${domain} = {
enable = true;
ca = lib.mkDefault (./. + "/${domain}/ca.crt");
- cert = lib.mkDefault (inputs.self + "/share/nebula/${domain}/${hostName}.crt");
+ cert = lib.mkDefault "${inputs.self}/share/nebula/${domain}/${hostName}.crt";
key = "/run/credentials/nebula@${domain}.service/${hostName}.key";
listen.host = lib.mkDefault "0.0.0.0";
tun.device = lib.mkDefault "neb-sourcephile";