bonfire/nixosModules/spoofdpi/default.nix

55 lines
1.5 KiB
Nix
Raw Normal View History

{ self, ... }:
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.spoofdpi;
pkg = self.packages.${pkgs.system}.spoofdpi;
in {
options.services.spoofdpi = {
enable = mkEnableOption "Enables the SpoofDPI service";
address = mkOption rec {
type = types.str;
default = "127.0.0.1";
example = default;
description = "Listen address";
};
port = mkOption rec {
2024-03-22 23:21:25 +05:00
type = types.port;
default = 8080;
example = default;
description = "Port";
};
2024-03-22 23:21:25 +05:00
openFirewall = mkOption {
type = types.bool;
default = false;
description = "Open services.spoofdpi.port";
};
dns = mkOption rec {
type = types.str;
default = "8.8.8.8";
example = default;
description = "DNS server";
};
};
config = mkIf cfg.enable {
systemd.services.spoofdpi = {
wantedBy = [ "multi-user.target" ];
2024-03-22 23:21:25 +05:00
after = [ "network.target" ];
serviceConfig = {
Restart = "on-failure";
2024-03-22 23:21:25 +05:00
ExecStart = "${pkg}/bin/spoof-dpi -no-banner -addr ${cfg.address} -port ${toString cfg.port} -dns ${cfg.dns}";
DynamicUser = "yes";
};
};
2024-03-22 23:21:25 +05:00
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ cfg.port ];
};
};
}