107 lines
3.6 KiB
Nix
107 lines
3.6 KiB
Nix
|
{ pkgs, config, lib, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.my.networking.warp;
|
||
|
in {
|
||
|
options = {
|
||
|
my.networking.warp = {
|
||
|
enable = lib.mkEnableOption (lib.mdDoc "cloudflare-warp, a service that replaces the connection between your device and the Internet with a modern, optimized, protocol");
|
||
|
|
||
|
package = lib.mkOption {
|
||
|
type = lib.types.package;
|
||
|
default = pkgs.cloudflare-warp;
|
||
|
defaultText = lib.literalExpression "pkgs.cloudflare-warp";
|
||
|
description = lib.mdDoc "The package to use for Cloudflare Warp.";
|
||
|
};
|
||
|
|
||
|
user = lib.mkOption {
|
||
|
type = lib.types.str;
|
||
|
default = "warp";
|
||
|
description = lib.mdDoc "User account under which Cloudflare Warp runs.";
|
||
|
};
|
||
|
|
||
|
group = lib.mkOption {
|
||
|
type = lib.types.str;
|
||
|
default = "warp";
|
||
|
description = lib.mdDoc "Group under which Cloudflare Warp runs.";
|
||
|
};
|
||
|
|
||
|
certificate = lib.mkOption {
|
||
|
type = with lib.types; nullOr path;
|
||
|
default = null;
|
||
|
description = lib.mdDoc ''
|
||
|
Path to the Cloudflare root certificate. There is a download link in the docs [here](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/install-cloudflare-cert/).
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
udpPort = lib.mkOption {
|
||
|
type = lib.types.int;
|
||
|
default = 2408;
|
||
|
description = lib.mdDoc ''
|
||
|
The UDP port to open in the firewall. Warp uses port 2408 by default, but fallback ports can be used if that conflicts with another service. See the [firewall documentation](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/firewall#warp-udp-ports) for the pre-configured available fallback ports.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
openFirewall = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
description = lib.mdDoc ''
|
||
|
Opens UDP port in the firewall. See `udpPort` configuration option, and [firewall documentation](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/firewall#warp-udp-ports).
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
environment.systemPackages = [ cfg.package ];
|
||
|
|
||
|
security.pki = lib.mkIf (cfg.certificate != null) {
|
||
|
certificateFiles = [ cfg.certificate ];
|
||
|
};
|
||
|
|
||
|
networking.firewall = lib.mkIf cfg.openFirewall {
|
||
|
allowedUDPPorts = [ cfg.udpPort ];
|
||
|
};
|
||
|
|
||
|
users.users = lib.mkIf (cfg.user == "warp") {
|
||
|
warp = {
|
||
|
isSystemUser = true;
|
||
|
group = "warp";
|
||
|
description = "Cloudflare Warp user";
|
||
|
home = "/var/lib/cloudflare-warp";
|
||
|
};
|
||
|
};
|
||
|
users.groups = lib.mkIf (cfg.group == "warp") {
|
||
|
warp = { };
|
||
|
};
|
||
|
|
||
|
systemd = {
|
||
|
packages = [ cfg.package ];
|
||
|
services.warp-svc = {
|
||
|
after = [ "network-online.target" "systemd-resolved.service" ];
|
||
|
wants = [ "network-online.target" ];
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
serviceConfig = {
|
||
|
StateDirectory = "cloudflare-warp";
|
||
|
User = "warp";
|
||
|
Umask = "0077";
|
||
|
# Hardening
|
||
|
LockPersonality = true;
|
||
|
PrivateMounts = true;
|
||
|
PrivateTmp = true;
|
||
|
ProtectControlGroups = true;
|
||
|
ProtectHostname = true;
|
||
|
ProtectKernelLogs = true;
|
||
|
ProtectKernelModules = true;
|
||
|
ProtectKernelTunables = true;
|
||
|
ProtectProc = "invisible";
|
||
|
# Leaving on strict activates warp on plus
|
||
|
ProtectSystem = "full";
|
||
|
RestrictNamespaces = true;
|
||
|
RestrictRealtime = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|