Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.5 KiB
Nix
68 lines
1.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.dante;
|
|
confFile = pkgs.writeText "dante-sockd.conf" ''
|
|
user.privileged: root
|
|
user.unprivileged: dante
|
|
logoutput: syslog
|
|
|
|
${cfg.config}
|
|
'';
|
|
in
|
|
|
|
{
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ arobyn ];
|
|
};
|
|
|
|
options = {
|
|
services.dante = {
|
|
enable = lib.mkEnableOption "Dante SOCKS proxy";
|
|
|
|
config = lib.mkOption {
|
|
type = lib.types.lines;
|
|
description = ''
|
|
Contents of Dante's configuration file.
|
|
NOTE: user.privileged, user.unprivileged and logoutput are set by the service.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
{
|
|
assertion = cfg.config != "";
|
|
message = "please provide Dante configuration file contents";
|
|
}
|
|
];
|
|
|
|
users.users.dante = {
|
|
description = "Dante SOCKS proxy daemon user";
|
|
isSystemUser = true;
|
|
group = "dante";
|
|
};
|
|
users.groups.dante = { };
|
|
|
|
systemd.services.dante = {
|
|
description = "Dante SOCKS v4 and v5 compatible proxy server";
|
|
wants = [ "network-online.target" ];
|
|
after = [ "network-online.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.dante}/bin/sockd -f ${confFile}";
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
# Can crash sometimes; see https://github.com/NixOS/nixpkgs/pull/39005#issuecomment-381828708
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
}
|