nixos-config/components/network/wireguard.nix

28 lines
495 B
Nix

{ lib, config, ... }:
with lib;
{
options.wireguard = {
wg0 = {
subnet = mkOption {
type = types.str;
default = "10.100.0.1/24";
};
};
};
# todo: use networking.wireguard instead of networking wg-quick
# with dynamicEndpointRefreshSeconds
#config = {
# systemd.services.wg-quick-wg0.serviceConfig = {
# Restart = "always";
# RestartSec = 50;
# Type = mkForce "simple";
# RemainAfterExit = mkForce false;
# };
#};
}