uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
88
nixos/modules/services/networking/sniproxy.nix
Normal file
88
nixos/modules/services/networking/sniproxy.nix
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
cfg = config.services.sniproxy;
|
||||
|
||||
configFile = pkgs.writeText "sniproxy.conf" ''
|
||||
user ${cfg.user}
|
||||
pidfile /run/sniproxy.pid
|
||||
${cfg.config}
|
||||
'';
|
||||
|
||||
in
|
||||
{
|
||||
imports = [ (mkRemovedOptionModule [ "services" "sniproxy" "logDir" ] "Now done by LogsDirectory=. Set to a custom path if you log to a different folder in your config.") ];
|
||||
|
||||
options = {
|
||||
services.sniproxy = {
|
||||
enable = mkEnableOption "sniproxy server";
|
||||
|
||||
user = mkOption {
|
||||
type = types.str;
|
||||
default = "sniproxy";
|
||||
description = "User account under which sniproxy runs.";
|
||||
};
|
||||
|
||||
group = mkOption {
|
||||
type = types.str;
|
||||
default = "sniproxy";
|
||||
description = "Group under which sniproxy runs.";
|
||||
};
|
||||
|
||||
config = mkOption {
|
||||
type = types.lines;
|
||||
default = "";
|
||||
description = "sniproxy.conf configuration excluding the daemon username and pid file.";
|
||||
example = ''
|
||||
error_log {
|
||||
filename /var/log/sniproxy/error.log
|
||||
}
|
||||
access_log {
|
||||
filename /var/log/sniproxy/access.log
|
||||
}
|
||||
listen 443 {
|
||||
proto tls
|
||||
}
|
||||
table {
|
||||
example.com 192.0.2.10
|
||||
example.net 192.0.2.20
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
systemd.services.sniproxy = {
|
||||
description = "sniproxy server";
|
||||
after = [ "network.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
Type = "forking";
|
||||
ExecStart = "${pkgs.sniproxy}/bin/sniproxy -c ${configFile}";
|
||||
LogsDirectory = "sniproxy";
|
||||
LogsDirectoryMode = "0640";
|
||||
Restart = "always";
|
||||
};
|
||||
};
|
||||
|
||||
users.users = mkIf (cfg.user == "sniproxy") {
|
||||
sniproxy = {
|
||||
group = cfg.group;
|
||||
uid = config.ids.uids.sniproxy;
|
||||
};
|
||||
};
|
||||
|
||||
users.groups = mkIf (cfg.group == "sniproxy") {
|
||||
sniproxy = {
|
||||
gid = config.ids.gids.sniproxy;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue