mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
79 lines
2.1 KiB
Nix
79 lines
2.1 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.ferretdb;
|
|
in
|
|
{
|
|
|
|
meta.maintainers = with lib.maintainers; [ julienmalka camillemndn ];
|
|
|
|
options = {
|
|
services.ferretdb = {
|
|
enable = mkEnableOption "FerretDB, an Open Source MongoDB alternative";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
example = literalExpression "pkgs.ferretdb";
|
|
default = pkgs.ferretdb;
|
|
defaultText = "pkgs.ferretdb";
|
|
description = "FerretDB package to use.";
|
|
};
|
|
|
|
settings = lib.mkOption {
|
|
type =
|
|
lib.types.submodule { freeformType = with lib.types; attrsOf str; };
|
|
example = {
|
|
FERRETDB_LOG_LEVEL = "warn";
|
|
FERRETDB_MODE = "normal";
|
|
};
|
|
description = ''
|
|
Additional configuration for FerretDB, see
|
|
<https://docs.ferretdb.io/configuration/flags/>
|
|
for supported values.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable
|
|
{
|
|
|
|
services.ferretdb.settings = {
|
|
FERRETDB_HANDLER = lib.mkDefault "sqlite";
|
|
FERRETDB_SQLITE_URL = lib.mkDefault "file:/var/lib/ferretdb/";
|
|
};
|
|
|
|
systemd.services.ferretdb = {
|
|
description = "FerretDB";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
environment = cfg.settings;
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
StateDirectory = "ferretdb";
|
|
WorkingDirectory = "/var/lib/ferretdb";
|
|
ExecStart = "${cfg.package}/bin/ferretdb";
|
|
Restart = "on-failure";
|
|
ProtectHome = true;
|
|
ProtectSystem = "strict";
|
|
PrivateTmp = true;
|
|
PrivateDevices = true;
|
|
ProtectHostname = true;
|
|
ProtectClock = true;
|
|
ProtectKernelTunables = true;
|
|
ProtectKernelModules = true;
|
|
ProtectKernelLogs = true;
|
|
ProtectControlGroups = true;
|
|
NoNewPrivileges = true;
|
|
RestrictRealtime = true;
|
|
RestrictSUIDSGID = true;
|
|
RemoveIPC = true;
|
|
PrivateMounts = true;
|
|
DynamicUser = true;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|