tinc: drop tincUpExtra

This commit is contained in:
tv 2023-01-23 18:44:56 +01:00
parent c8c916ccf1
commit ebd22b2d28

View File

@ -26,10 +26,7 @@ with import <stockholm/lib>;
Port = ${toString tinc.config.host.nets.${netname}.tinc.port}
${tinc.config.extraConfig}
'';
"tinc-up" = pkgs.writeDash "${netname}-tinc-up" /* sh */ ''
${tinc.config.tincUp}
${tinc.config.tincUpExtra}
'';
"tinc-up" = pkgs.writeDash "${netname}-tinc-up" tinc.config.tincUp;
});
};
@ -85,11 +82,6 @@ with import <stockholm/lib>;
'';
};
tincUpExtra = mkOption {
type = types.str;
default = "";
};
tincPackage = mkOption {
type = types.package;
default = pkgs.tinc_pre;