mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
84 lines
2.3 KiB
Nix
84 lines
2.3 KiB
Nix
{ config
|
|
, lib
|
|
, pkgs
|
|
, ...
|
|
}:
|
|
let
|
|
cfg = config.services.guacamole-server;
|
|
in
|
|
{
|
|
options = {
|
|
services.guacamole-server = {
|
|
enable = lib.mkEnableOption "Apache Guacamole Server (guacd)";
|
|
package = lib.mkPackageOption pkgs "guacamole-server" { };
|
|
|
|
extraEnvironment = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.str;
|
|
default = { };
|
|
example = lib.literalExpression ''
|
|
{
|
|
ENVIRONMENT = "production";
|
|
}
|
|
'';
|
|
description = "Environment variables to pass to guacd.";
|
|
};
|
|
|
|
host = lib.mkOption {
|
|
default = "127.0.0.1";
|
|
description = ''
|
|
The host name or IP address the server should listen to.
|
|
'';
|
|
type = lib.types.str;
|
|
};
|
|
|
|
port = lib.mkOption {
|
|
default = 4822;
|
|
description = ''
|
|
The port the guacd server should listen to.
|
|
'';
|
|
type = lib.types.port;
|
|
};
|
|
|
|
logbackXml = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.path;
|
|
default = null;
|
|
example = "/path/to/logback.xml";
|
|
description = ''
|
|
Configuration file that correspond to `logback.xml`.
|
|
'';
|
|
};
|
|
|
|
userMappingXml = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.path;
|
|
default = null;
|
|
example = "/path/to/user-mapping.xml";
|
|
description = ''
|
|
Configuration file that correspond to `user-mapping.xml`.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
# Setup configuration files.
|
|
environment.etc."guacamole/logback.xml" = lib.mkIf (cfg.logbackXml != null) { source = cfg.logbackXml; };
|
|
environment.etc."guacamole/user-mapping.xml" = lib.mkIf (cfg.userMappingXml != null) { source = cfg.userMappingXml; };
|
|
|
|
systemd.services.guacamole-server = {
|
|
description = "Apache Guacamole server (guacd)";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
environment = {
|
|
HOME = "/run/guacamole-server";
|
|
} // cfg.extraEnvironment;
|
|
serviceConfig = {
|
|
ExecStart = "${lib.getExe cfg.package} -f -b ${cfg.host} -l ${toString cfg.port}";
|
|
RuntimeDirectory = "guacamole-server";
|
|
DynamicUser = true;
|
|
PrivateTmp = "yes";
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
}
|