mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.wg-netmanager;
|
|
in
|
|
{
|
|
|
|
options = {
|
|
services.wg-netmanager = {
|
|
enable = mkEnableOption (lib.mdDoc "Wireguard network manager");
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf cfg.enable {
|
|
# NOTE: wg-netmanager runs as root
|
|
systemd.services.wg-netmanager = {
|
|
description = "Wireguard network manager";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
path = with pkgs; [ wireguard-tools iproute2 wireguard-go ];
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
Restart = "on-failure";
|
|
ExecStart = "${pkgs.wg-netmanager}/bin/wg_netmanager";
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
ExecStop = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
|
|
ReadWritePaths = [
|
|
"/tmp" # wg-netmanager creates files in /tmp before deleting them after use
|
|
];
|
|
};
|
|
unitConfig = {
|
|
ConditionPathExists = ["/etc/wg_netmanager/network.yaml" "/etc/wg_netmanager/peer.yaml"];
|
|
};
|
|
};
|
|
};
|
|
|
|
meta.maintainers = with maintainers; [ gin66 ];
|
|
}
|