mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
6c5ab28fce
This was done by generating a truly hilarious configuration: rg 'services\.[^.]+\.enable\t' opts-tags | cut -f1 > allonconfig.nix The following were not tested due to other evaluation errors. They should probably be manually audited. services.amule services.castopod services.ceph services.chatgpt-retrieval-plugin services.clamsmtp services.clight services.dante services.dex services.discourse services.dwm-status services.engelsystem services.foundationdb services.frigate services.frp services.grocy services.guacamole-client services.hedgedoc services.home-assistant services.honk services.imaginary services.jitsi-meet services.kerberos_server services.limesurvey services.mastodon services.mediawiki services.mobilizon services.moodle services.mosquitto services.nextcloud services.nullmailer services.patroni services.pfix-srsd services.pgpkeyserver-lite services.postfixadmin services.roundcube services.schleuder services.self-deploy services.slskd services.spacecookie services.statsd services.step-ca services.sympa services.tsmBackup services.vdirsyncer services.vikunja services.yandex-disk services.zabbixWeb
94 lines
2.8 KiB
Nix
94 lines
2.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.etesync-dav;
|
|
in
|
|
{
|
|
options.services.etesync-dav = {
|
|
enable = mkEnableOption (lib.mdDoc "etesync-dav");
|
|
|
|
host = mkOption {
|
|
type = types.str;
|
|
default = "localhost";
|
|
description = lib.mdDoc "The server host address.";
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 37358;
|
|
description = lib.mdDoc "The server host port.";
|
|
};
|
|
|
|
apiUrl = mkOption {
|
|
type = types.str;
|
|
default = "https://api.etesync.com/";
|
|
description = lib.mdDoc "The url to the etesync API.";
|
|
};
|
|
|
|
openFirewall = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = lib.mdDoc "Whether to open the firewall for the specified port.";
|
|
};
|
|
|
|
sslCertificate = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
example = "/var/etesync.crt";
|
|
description = lib.mdDoc ''
|
|
Path to server SSL certificate. It will be copied into
|
|
etesync-dav's data directory.
|
|
'';
|
|
};
|
|
|
|
sslCertificateKey = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
example = "/var/etesync.key";
|
|
description = lib.mdDoc ''
|
|
Path to server SSL certificate key. It will be copied into
|
|
etesync-dav's data directory.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.port ];
|
|
|
|
systemd.services.etesync-dav = {
|
|
description = "etesync-dav - A CalDAV and CardDAV adapter for EteSync";
|
|
wants = [ "network-online.target" ];
|
|
after = [ "network-online.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = [ pkgs.etesync-dav ];
|
|
environment = {
|
|
ETESYNC_LISTEN_ADDRESS = cfg.host;
|
|
ETESYNC_LISTEN_PORT = toString cfg.port;
|
|
ETESYNC_URL = cfg.apiUrl;
|
|
ETESYNC_DATA_DIR = "/var/lib/etesync-dav";
|
|
};
|
|
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
DynamicUser = true;
|
|
StateDirectory = "etesync-dav";
|
|
ExecStart = "${pkgs.etesync-dav}/bin/etesync-dav";
|
|
ExecStartPre = mkIf (cfg.sslCertificate != null || cfg.sslCertificateKey != null) (
|
|
pkgs.writers.writeBash "etesync-dav-copy-keys" ''
|
|
${optionalString (cfg.sslCertificate != null) ''
|
|
cp ${toString cfg.sslCertificate} $STATE_DIRECTORY/etesync.crt
|
|
''}
|
|
${optionalString (cfg.sslCertificateKey != null) ''
|
|
cp ${toString cfg.sslCertificateKey} $STATE_DIRECTORY/etesync.key
|
|
''}
|
|
''
|
|
);
|
|
Restart = "on-failure";
|
|
RestartSec = "30min 1s";
|
|
};
|
|
};
|
|
};
|
|
}
|