2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
149 lines
3.9 KiB
Nix
149 lines
3.9 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xandikos;
|
|
in
|
|
{
|
|
|
|
options = {
|
|
services.xandikos = {
|
|
enable = mkEnableOption "Xandikos CalDAV and CardDAV server";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.xandikos;
|
|
defaultText = literalExpression "pkgs.xandikos";
|
|
description = lib.mdDoc "The Xandikos package to use.";
|
|
};
|
|
|
|
address = mkOption {
|
|
type = types.str;
|
|
default = "localhost";
|
|
description = lib.mdDoc ''
|
|
The IP address on which Xandikos will listen.
|
|
By default listens on localhost.
|
|
'';
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 8080;
|
|
description = lib.mdDoc "The port of the Xandikos web application";
|
|
};
|
|
|
|
routePrefix = mkOption {
|
|
type = types.str;
|
|
default = "/";
|
|
description = lib.mdDoc ''
|
|
Path to Xandikos.
|
|
Useful when Xandikos is behind a reverse proxy.
|
|
'';
|
|
};
|
|
|
|
extraOptions = mkOption {
|
|
default = [];
|
|
type = types.listOf types.str;
|
|
example = literalExpression ''
|
|
[ "--autocreate"
|
|
"--defaults"
|
|
"--current-user-principal user"
|
|
"--dump-dav-xml"
|
|
]
|
|
'';
|
|
description = lib.mdDoc ''
|
|
Extra command line arguments to pass to xandikos.
|
|
'';
|
|
};
|
|
|
|
nginx = mkOption {
|
|
default = {};
|
|
description = lib.mdDoc ''
|
|
Configuration for nginx reverse proxy.
|
|
'';
|
|
|
|
type = types.submodule {
|
|
options = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Configure the nginx reverse proxy settings.
|
|
'';
|
|
};
|
|
|
|
hostName = mkOption {
|
|
type = types.str;
|
|
description = lib.mdDoc ''
|
|
The hostname use to setup the virtualhost configuration
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable (
|
|
mkMerge [
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ _0x4A6F ];
|
|
|
|
systemd.services.xandikos = {
|
|
description = "A Simple Calendar and Contact Server";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
User = "xandikos";
|
|
Group = "xandikos";
|
|
DynamicUser = "yes";
|
|
RuntimeDirectory = "xandikos";
|
|
StateDirectory = "xandikos";
|
|
StateDirectoryMode = "0700";
|
|
PrivateDevices = true;
|
|
# Sandboxing
|
|
CapabilityBoundingSet = "CAP_NET_RAW CAP_NET_ADMIN";
|
|
ProtectSystem = "strict";
|
|
ProtectHome = true;
|
|
PrivateTmp = true;
|
|
ProtectKernelTunables = true;
|
|
ProtectKernelModules = true;
|
|
ProtectControlGroups = true;
|
|
RestrictAddressFamilies = "AF_INET AF_INET6 AF_UNIX AF_PACKET AF_NETLINK";
|
|
RestrictNamespaces = true;
|
|
LockPersonality = true;
|
|
MemoryDenyWriteExecute = true;
|
|
RestrictRealtime = true;
|
|
RestrictSUIDSGID = true;
|
|
ExecStart = ''
|
|
${cfg.package}/bin/xandikos \
|
|
--directory /var/lib/xandikos \
|
|
--listen-address ${cfg.address} \
|
|
--port ${toString cfg.port} \
|
|
--route-prefix ${cfg.routePrefix} \
|
|
${lib.concatStringsSep " " cfg.extraOptions}
|
|
'';
|
|
};
|
|
};
|
|
}
|
|
|
|
(
|
|
mkIf cfg.nginx.enable {
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."${cfg.nginx.hostName}" = {
|
|
locations."/" = {
|
|
proxyPass = "http://${cfg.address}:${toString cfg.port}/";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
)
|
|
]
|
|
);
|
|
}
|