44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
|
{ 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 {
|
||
|
type = types.str;
|
||
|
default = "8080";
|
||
|
example = default;
|
||
|
description = "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" ];
|
||
|
serviceConfig = {
|
||
|
Restart = "on-failure";
|
||
|
ExecStart = "${pkg}/bin/spoof-dpi -no-banner -addr ${cfg.address} -port ${cfg.port} -dns ${cfg.dns}";
|
||
|
DynamicUser = "yes";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|