mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
aba87b85ef
Make timer persistent Start timer after hydron Change interval from hourly to weekly
168 lines
5.1 KiB
Nix
168 lines
5.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.hydron;
|
|
postgres = config.services.postgresql;
|
|
in with lib; {
|
|
options.services.hydron = {
|
|
enable = mkEnableOption "hydron";
|
|
|
|
dataDir = mkOption {
|
|
type = types.path;
|
|
default = "/var/lib/hydron";
|
|
example = "/home/okina/hydron";
|
|
description = "Location where hydron runs and stores data.";
|
|
};
|
|
|
|
interval = mkOption {
|
|
type = types.str;
|
|
default = "weekly";
|
|
example = "06:00";
|
|
description = ''
|
|
How often we run hydron import and possibly fetch tags. Runs by default every week.
|
|
|
|
The format is described in
|
|
<citerefentry><refentrytitle>systemd.time</refentrytitle>
|
|
<manvolnum>7</manvolnum></citerefentry>.
|
|
'';
|
|
};
|
|
|
|
password = mkOption {
|
|
type = types.str;
|
|
default = "hydron";
|
|
example = "dumbpass";
|
|
description = "Password for the hydron database.";
|
|
};
|
|
|
|
passwordFile = mkOption {
|
|
type = types.path;
|
|
default = "/run/keys/hydron-password-file";
|
|
example = "/home/okina/hydron/keys/pass";
|
|
description = "Password file for the hydron database.";
|
|
};
|
|
|
|
postgresArgs = mkOption {
|
|
type = types.str;
|
|
description = "Postgresql connection arguments.";
|
|
example = ''
|
|
{
|
|
"driver": "postgres",
|
|
"connection": "user=hydron password=dumbpass dbname=hydron sslmode=disable"
|
|
}
|
|
'';
|
|
};
|
|
|
|
postgresArgsFile = mkOption {
|
|
type = types.path;
|
|
default = "/run/keys/hydron-postgres-args";
|
|
example = "/home/okina/hydron/keys/postgres";
|
|
description = "Postgresql connection arguments file.";
|
|
};
|
|
|
|
listenAddress = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
example = "127.0.0.1:8010";
|
|
description = "Listen on a specific IP address and port.";
|
|
};
|
|
|
|
importPaths = mkOption {
|
|
type = types.listOf types.path;
|
|
default = [];
|
|
example = [ "/home/okina/Pictures" ];
|
|
description = "Paths that hydron will recursively import.";
|
|
};
|
|
|
|
fetchTags = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Fetch tags for imported images and webm from gelbooru.";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
security.sudo.enable = cfg.enable;
|
|
services.postgresql.enable = cfg.enable;
|
|
services.hydron.passwordFile = mkDefault (pkgs.writeText "hydron-password-file" cfg.password);
|
|
services.hydron.postgresArgsFile = mkDefault (pkgs.writeText "hydron-postgres-args" cfg.postgresArgs);
|
|
services.hydron.postgresArgs = mkDefault ''
|
|
{
|
|
"driver": "postgres",
|
|
"connection": "user=hydron password=${cfg.password} dbname=hydron sslmode=disable"
|
|
}
|
|
'';
|
|
|
|
systemd.services.hydron = {
|
|
description = "hydron";
|
|
after = [ "network.target" "postgresql.service" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart = ''
|
|
# Ensure folder exists or create it and permissions are correct
|
|
mkdir -p ${escapeShellArg cfg.dataDir}/{.hydron,images}
|
|
ln -sf ${escapeShellArg cfg.postgresArgsFile} ${escapeShellArg cfg.dataDir}/.hydron/db_conf.json
|
|
chmod 750 ${escapeShellArg cfg.dataDir}
|
|
chown -R hydron:hydron ${escapeShellArg cfg.dataDir}
|
|
|
|
# Ensure the database is correct or create it
|
|
${pkgs.sudo}/bin/sudo -u ${postgres.superUser} ${postgres.package}/bin/createuser \
|
|
-SDR hydron || true
|
|
${pkgs.sudo}/bin/sudo -u ${postgres.superUser} ${postgres.package}/bin/createdb \
|
|
-T template0 -E UTF8 -O hydron hydron || true
|
|
${pkgs.sudo}/bin/sudo -u hydron ${postgres.package}/bin/psql \
|
|
-c "ALTER ROLE hydron WITH PASSWORD '$(cat ${escapeShellArg cfg.passwordFile})';" || true
|
|
'';
|
|
|
|
serviceConfig = {
|
|
PermissionsStartOnly = true;
|
|
User = "hydron";
|
|
Group = "hydron";
|
|
ExecStart = "${pkgs.hydron}/bin/hydron serve"
|
|
+ optionalString (cfg.listenAddress != null) " -a ${cfg.listenAddress}";
|
|
};
|
|
};
|
|
|
|
systemd.services.hydron-fetch = {
|
|
description = "Import paths into hydron and possibly fetch tags";
|
|
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
User = "hydron";
|
|
Group = "hydron";
|
|
ExecStart = "${pkgs.hydron}/bin/hydron import "
|
|
+ optionalString cfg.fetchTags "-f "
|
|
+ (escapeShellArg cfg.dataDir) + "/images " + (escapeShellArgs cfg.importPaths);
|
|
};
|
|
};
|
|
|
|
systemd.timers.hydron-fetch = {
|
|
description = "Automatically import paths into hydron and possibly fetch tags";
|
|
after = [ "network.target" "hydron.service" ];
|
|
wantedBy = [ "timers.target" ];
|
|
|
|
timerConfig = {
|
|
Persistent = true;
|
|
OnCalendar = cfg.interval;
|
|
};
|
|
};
|
|
|
|
users = {
|
|
groups.hydron.gid = config.ids.gids.hydron;
|
|
|
|
users.hydron = {
|
|
description = "hydron server service user";
|
|
home = cfg.dataDir;
|
|
createHome = true;
|
|
group = "hydron";
|
|
uid = config.ids.uids.hydron;
|
|
};
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
(mkRenamedOptionModule [ "services" "hydron" "baseDir" ] [ "services" "hydron" "dataDir" ])
|
|
];
|
|
|
|
meta.maintainers = with maintainers; [ chiiruno ];
|
|
}
|