forked from mirrors/nixpkgs
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
4.2 KiB
Nix
149 lines
4.2 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.dgraph;
|
|
settingsFormat = pkgs.formats.json {};
|
|
configFile = settingsFormat.generate "config.json" cfg.settings;
|
|
dgraphWithNode = pkgs.runCommand "dgraph" {
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
}
|
|
''
|
|
mkdir -p $out/bin
|
|
makeWrapper ${cfg.package}/bin/dgraph $out/bin/dgraph \
|
|
--set PATH '${lib.makeBinPath [ pkgs.nodejs ]}:$PATH' \
|
|
'';
|
|
securityOptions = {
|
|
NoNewPrivileges = true;
|
|
|
|
AmbientCapabilities = "";
|
|
CapabilityBoundingSet = "";
|
|
|
|
DeviceAllow = "";
|
|
|
|
LockPersonality = true;
|
|
|
|
PrivateTmp = true;
|
|
PrivateDevices = true;
|
|
PrivateUsers = true;
|
|
|
|
ProtectClock = true;
|
|
ProtectControlGroups = true;
|
|
ProtectHostname = true;
|
|
ProtectKernelLogs = true;
|
|
ProtectKernelModules = true;
|
|
ProtectKernelTunables = true;
|
|
|
|
RemoveIPC = true;
|
|
|
|
RestrictNamespaces = true;
|
|
RestrictAddressFamilies = [ "AF_INET" "AF_INET6" "AF_UNIX" ];
|
|
RestrictRealtime = true;
|
|
RestrictSUIDSGID = true;
|
|
|
|
SystemCallArchitectures = "native";
|
|
SystemCallErrorNumber = "EPERM";
|
|
SystemCallFilter = [
|
|
"@system-service"
|
|
"~@cpu-emulation" "~@debug" "~@keyring" "~@memlock" "~@obsolete" "~@privileged" "~@setuid"
|
|
];
|
|
};
|
|
in
|
|
{
|
|
options = {
|
|
services.dgraph = {
|
|
enable = mkEnableOption "Dgraph native GraphQL database with a graph backend";
|
|
|
|
package = lib.mkPackageOption pkgs "dgraph" { };
|
|
|
|
settings = mkOption {
|
|
type = settingsFormat.type;
|
|
default = {};
|
|
description = lib.mdDoc ''
|
|
Contents of the dgraph config. For more details see https://dgraph.io/docs/deploy/config
|
|
'';
|
|
};
|
|
|
|
alpha = {
|
|
host = mkOption {
|
|
type = types.str;
|
|
default = "localhost";
|
|
description = lib.mdDoc ''
|
|
The host which dgraph alpha will be run on.
|
|
'';
|
|
};
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 7080;
|
|
description = lib.mdDoc ''
|
|
The port which to run dgraph alpha on.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
zero = {
|
|
host = mkOption {
|
|
type = types.str;
|
|
default = "localhost";
|
|
description = lib.mdDoc ''
|
|
The host which dgraph zero will be run on.
|
|
'';
|
|
};
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 5080;
|
|
description = lib.mdDoc ''
|
|
The port which to run dgraph zero on.
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.dgraph.settings = {
|
|
badger.compression = mkDefault "zstd:3";
|
|
};
|
|
|
|
systemd.services.dgraph-zero = {
|
|
description = "Dgraph native GraphQL database with a graph backend. Zero controls node clustering";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
StateDirectory = "dgraph-zero";
|
|
WorkingDirectory = "/var/lib/dgraph-zero";
|
|
DynamicUser = true;
|
|
ExecStart = "${cfg.package}/bin/dgraph zero --my ${cfg.zero.host}:${toString cfg.zero.port}";
|
|
Restart = "on-failure";
|
|
} // securityOptions;
|
|
};
|
|
|
|
systemd.services.dgraph-alpha = {
|
|
description = "Dgraph native GraphQL database with a graph backend. Alpha serves data";
|
|
after = [ "network.target" "dgraph-zero.service" ];
|
|
requires = [ "dgraph-zero.service" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
StateDirectory = "dgraph-alpha";
|
|
WorkingDirectory = "/var/lib/dgraph-alpha";
|
|
DynamicUser = true;
|
|
ExecStart = "${dgraphWithNode}/bin/dgraph alpha --config ${configFile} --my ${cfg.alpha.host}:${toString cfg.alpha.port} --zero ${cfg.zero.host}:${toString cfg.zero.port}";
|
|
ExecStop = ''
|
|
${pkgs.curl}/bin/curl --data "mutation { shutdown { response { message code } } }" \
|
|
--header 'Content-Type: application/graphql' \
|
|
-X POST \
|
|
http://localhost:8080/admin
|
|
'';
|
|
Restart = "on-failure";
|
|
} // securityOptions;
|
|
};
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ happysalada ];
|
|
}
|