Update Wireguard client also
This commit is contained in:
parent
08827b5d5d
commit
48a2e3211d
12 changed files with 128 additions and 110 deletions
28
modules/system/services/general/wireguard/default.nix
Normal file
28
modules/system/services/general/wireguard/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
options.services.wg.client.enable = lib.mkEnableOption "Enable Wireguard client";
|
||||
|
||||
config = lib.mkIf config.services.wg.client.enable {
|
||||
boot.kernelModules = [ "wireguard" ];
|
||||
|
||||
systemd.network = {
|
||||
netdevs = {
|
||||
"10-wg0" = {
|
||||
netdevConfig = {
|
||||
Kind = "wireguard";
|
||||
Name = "wg0";
|
||||
MTUBytes = "1300";
|
||||
};
|
||||
wireguardConfig = {
|
||||
PrivateKeyFile = pkgs.writeText "wgclientsecret" config.secrets.wg.clientKey;
|
||||
ListenPort = 9918;
|
||||
};
|
||||
};
|
||||
};
|
||||
networks."wg0" = {
|
||||
matchConfig.Name = "wg0";
|
||||
DHCP = "no";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue