Compare commits

...

5 commits

Author SHA1 Message Date
Bruno BELANYI d83384e6bb hosts: nixos: porthos: services: audiobookshelf
Some checks failed
ci/woodpecker/push/check Pipeline failed
2024-03-21 20:34:01 +01:00
Bruno BELANYI fc33906fa0 nixos: services: add audiobookshelf 2024-03-21 20:34:01 +01:00
Bruno BELANYI 135dd86d7e hosts: nixos: porthos: migrate podgrab 'dataDir'
I want to share it with `audiobookshelf`, so putting it in `/data/media`
makes it easier.
2024-03-21 20:33:21 +01:00
Bruno BELANYI 408ae6bffd nixos: services: podgrab: add 'dataDir' 2024-03-21 20:33:21 +01:00
Bruno BELANYI 9564df4acb nixos: services: podgrab: use 'media' group 2024-03-21 20:33:21 +01:00
4 changed files with 61 additions and 0 deletions

View file

@ -10,6 +10,11 @@ in
adblock = {
enable = true;
};
# Audiobook and podcast library
audiobookshelf = {
enable = true;
port = 9599;
};
# Backblaze B2 backup
backup = {
enable = true;
@ -134,6 +139,7 @@ in
podgrab = {
enable = true;
passwordFile = secrets."podgrab/password".path;
dataDir = "/data/media/podcasts";
port = 9598;
};
# Regular backups

View file

@ -0,0 +1,39 @@
# Audiobook and podcast library
{ config, lib, ... }:
let
cfg = config.my.services.audiobookshelf;
in
{
options.my.services.audiobookshelf = with lib; {
enable = mkEnableOption "Audiobookshelf, a self-hosted podcast manager";
port = mkOption {
type = types.port;
default = 8000;
example = 4242;
description = "The port on which Audiobookshelf will listen for incoming HTTP traffic.";
};
};
config = lib.mkIf cfg.enable {
services.audiobookshelf = {
enable = true;
inherit (cfg) port;
group = "media";
};
# Set-up media group
users.groups.media = { };
my.services.nginx.virtualHosts = {
audiobookshelf = {
inherit (cfg) port;
# Proxy websockets for RPC
extraConfig = {
locations."/".proxyWebsockets = true;
};
};
};
};
}

View file

@ -4,6 +4,7 @@
imports = [
./adblock
./aria
./audiobookshelf
./backup
./blog
./calibre-web

View file

@ -17,6 +17,15 @@ in
'';
};
dataDir = mkOption {
type = with types; nullOr str;
default = null;
example = "/mnt/paperless";
description = ''
Path to the directory to store the podcasts. Use default if null
'';
};
port = mkOption {
type = types.port;
default = 8080;
@ -29,8 +38,14 @@ in
services.podgrab = {
enable = true;
inherit (cfg) passwordFile port;
group = "media";
dataDirectory = lib.mkIf (cfg.dataDir != null) cfg.dataDir;
};
# Set-up media group
users.groups.media = { };
my.services.nginx.virtualHosts = {
podgrab = {
inherit (cfg) port;