Merge pull request #297805 from ambroisie/podgrab-user

nixos/podgrab: add user/group/dataDirectory options
This commit is contained in:
Bruno BELANYI 2024-04-19 10:08:04 +01:00 committed by GitHub
commit 5d8f1c0172
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,8 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
cfg = config.services.podgrab; cfg = config.services.podgrab;
stateDir = "/var/lib/podgrab";
in in
{ {
options.services.podgrab = with lib; { options.services.podgrab = with lib; {
@ -22,28 +24,59 @@ in
example = 4242; example = 4242;
description = "The port on which Podgrab will listen for incoming HTTP traffic."; description = "The port on which Podgrab will listen for incoming HTTP traffic.";
}; };
dataDirectory = mkOption {
type = types.path;
default = "${stateDir}/data";
example = "/mnt/podcasts";
description = "Directory to store downloads.";
};
user = mkOption {
type = types.str;
default = "podgrab";
description = "User under which Podgrab runs, and which owns the download directory.";
};
group = mkOption {
type = types.str;
default = "podgrab";
description = "Group under which Podgrab runs, and which owns the download directory.";
};
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
systemd.tmpfiles.settings."10-pyload" = {
${cfg.dataDirectory}.d = { inherit (cfg) user group; };
};
systemd.services.podgrab = { systemd.services.podgrab = {
description = "Podgrab podcast manager"; description = "Podgrab podcast manager";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
environment = { environment = {
CONFIG = "/var/lib/podgrab/config"; CONFIG = "${stateDir}/config";
DATA = "/var/lib/podgrab/data"; DATA = cfg.dataDirectory;
GIN_MODE = "release"; GIN_MODE = "release";
PORT = toString cfg.port; PORT = toString cfg.port;
}; };
serviceConfig = { serviceConfig = {
DynamicUser = true; User = cfg.user;
Group = cfg.group;
EnvironmentFile = lib.optionals (cfg.passwordFile != null) [ EnvironmentFile = lib.optionals (cfg.passwordFile != null) [
cfg.passwordFile cfg.passwordFile
]; ];
ExecStart = "${pkgs.podgrab}/bin/podgrab"; ExecStart = "${pkgs.podgrab}/bin/podgrab";
WorkingDirectory = "${pkgs.podgrab}/share"; WorkingDirectory = "${pkgs.podgrab}/share";
StateDirectory = [ "podgrab/config" "podgrab/data" ]; StateDirectory = [ "podgrab/config" ];
}; };
}; };
users.users.podgrab = lib.mkIf (cfg.user == "podgrab") {
isSystemUser = true;
group = cfg.group;
};
users.groups.podgrab = lib.mkIf (cfg.group == "podgrab") { };
}; };
meta.maintainers = with lib.maintainers; [ ambroisie ]; meta.maintainers = with lib.maintainers; [ ambroisie ];