nixpkgs/nixos/modules/services/web-servers/garage.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

113 lines
4.1 KiB
Nix
Raw Normal View History

2022-09-07 20:04:27 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.garage;
2023-10-17 12:52:38 +00:00
toml = pkgs.formats.toml { };
2022-09-07 20:04:27 +00:00
configFile = toml.generate "garage.toml" cfg.settings;
in
{
meta = {
doc = ./garage.md;
maintainers = with pkgs.lib.maintainers; [ raitobezarius ];
};
2022-09-07 20:04:27 +00:00
options.services.garage = {
enable = mkEnableOption "Garage Object Storage (S3 compatible)";
2022-09-07 20:04:27 +00:00
extraEnvironment = mkOption {
type = types.attrsOf types.str;
description = "Extra environment variables to pass to the Garage server.";
2023-10-17 12:52:38 +00:00
default = { };
example = { RUST_BACKTRACE = "yes"; };
2022-09-07 20:04:27 +00:00
};
environmentFile = mkOption {
type = types.nullOr types.path;
description = "File containing environment variables to be passed to the Garage server.";
default = null;
};
2022-09-07 20:04:27 +00:00
logLevel = mkOption {
type = types.enum ([ "error" "warn" "info" "debug" "trace" ]);
2022-09-07 20:04:27 +00:00
default = "info";
example = "debug";
description = "Garage log level, see <https://garagehq.deuxfleurs.fr/documentation/quick-start/#launching-the-garage-server> for examples.";
2022-09-07 20:04:27 +00:00
};
settings = mkOption {
type = types.submodule {
freeformType = toml.type;
options = {
metadata_dir = mkOption {
default = "/var/lib/garage/meta";
type = types.path;
description = "The metadata directory, put this on a fast disk (e.g. SSD) if possible.";
2022-09-07 20:04:27 +00:00
};
data_dir = mkOption {
default = "/var/lib/garage/data";
type = types.path;
description = "The main data storage, put this on your large storage (e.g. high capacity HDD)";
2022-09-07 20:04:27 +00:00
};
replication_mode = mkOption {
default = "none";
type = types.enum ([ "none" "1" "2" "3" "2-dangerous" "3-dangerous" "3-degraded" 1 2 3 ]);
2022-09-07 20:04:27 +00:00
apply = v: toString v;
description = "Garage replication mode, defaults to none, see: <https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/#replication-mode> for reference.";
2022-09-07 20:04:27 +00:00
};
};
};
description = "Garage configuration, see <https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/> for reference.";
2022-09-07 20:04:27 +00:00
};
package = mkOption {
type = types.package;
description = "Garage package to use, needs to be set explicitly. If you are upgrading from a major version, please read NixOS and Garage release notes for upgrade instructions.";
2022-09-07 20:04:27 +00:00
};
};
config = mkIf cfg.enable {
environment.etc."garage.toml" = {
source = configFile;
};
# For administration
environment.systemPackages = [
(pkgs.writeScriptBin "garage" ''
# make it so all future variables set are automatically exported as environment variables
set -a
# source the set environmentFile (since systemd EnvironmentFile is supposed to be a minor subset of posix sh parsing) (with shell arg escaping to avoid quoting issues)
[ -f ${lib.escapeShellArg cfg.environmentFile} ] && . ${lib.escapeShellArg cfg.environmentFile}
# exec the program with quoted args (also with shell arg escaping for the program path to avoid quoting issues there)
exec ${lib.escapeShellArg (lib.getExe cfg.package)} "$@"
'')
];
2022-09-07 20:04:27 +00:00
systemd.services.garage = {
description = "Garage Object Storage (S3 compatible)";
after = [ "network.target" "network-online.target" ];
wants = [ "network.target" "network-online.target" ];
wantedBy = [ "multi-user.target" ];
restartTriggers = [ configFile ] ++ (lib.optional (cfg.environmentFile != null) cfg.environmentFile);
2022-09-07 20:04:27 +00:00
serviceConfig = {
ExecStart = "${cfg.package}/bin/garage server";
StateDirectory = mkIf (hasPrefix "/var/lib/garage" cfg.settings.data_dir || hasPrefix "/var/lib/garage" cfg.settings.metadata_dir) "garage";
2022-09-07 20:04:27 +00:00
DynamicUser = lib.mkDefault true;
ProtectHome = true;
NoNewPrivileges = true;
EnvironmentFile = lib.optional (cfg.environmentFile != null) cfg.environmentFile;
2022-09-07 20:04:27 +00:00
};
environment = {
RUST_LOG = lib.mkDefault "garage=${cfg.logLevel}";
} // cfg.extraEnvironment;
};
};
}