mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
0a37316d6c
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
80 lines
2.1 KiB
Nix
80 lines
2.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) escapeShellArgs mkEnableOption mkPackageOption mkIf mkOption types;
|
|
|
|
cfg = config.services.mimir;
|
|
|
|
settingsFormat = pkgs.formats.yaml {};
|
|
in {
|
|
options.services.mimir = {
|
|
enable = mkEnableOption (lib.mdDoc "mimir");
|
|
|
|
configuration = mkOption {
|
|
type = (pkgs.formats.json {}).type;
|
|
default = {};
|
|
description = lib.mdDoc ''
|
|
Specify the configuration for Mimir in Nix.
|
|
'';
|
|
};
|
|
|
|
configFile = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
Specify a configuration file that Mimir should use.
|
|
'';
|
|
};
|
|
|
|
package = mkPackageOption pkgs "mimir" { };
|
|
|
|
extraFlags = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
example = [ "--config.expand-env=true" ];
|
|
description = lib.mdDoc ''
|
|
Specify a list of additional command line flags,
|
|
which get escaped and are then passed to Mimir.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
# for mimirtool
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
assertions = [{
|
|
assertion = (
|
|
(cfg.configuration == {} -> cfg.configFile != null) &&
|
|
(cfg.configFile != null -> cfg.configuration == {})
|
|
);
|
|
message = ''
|
|
Please specify either
|
|
'services.mimir.configuration' or
|
|
'services.mimir.configFile'.
|
|
'';
|
|
}];
|
|
|
|
systemd.services.mimir = {
|
|
description = "mimir Service Daemon";
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = let
|
|
conf = if cfg.configFile == null
|
|
then settingsFormat.generate "config.yaml" cfg.configuration
|
|
else cfg.configFile;
|
|
in
|
|
{
|
|
ExecStart = "${cfg.package}/bin/mimir --config.file=${conf} ${escapeShellArgs cfg.extraFlags}";
|
|
DynamicUser = true;
|
|
Restart = "always";
|
|
ProtectSystem = "full";
|
|
DevicePolicy = "closed";
|
|
NoNewPrivileges = true;
|
|
WorkingDirectory = "/var/lib/mimir";
|
|
StateDirectory = "mimir";
|
|
};
|
|
};
|
|
};
|
|
}
|