modules: services: put modules into folders
This commit is contained in:
parent
836b54b8eb
commit
ac90c5b11a
29 changed files with 28 additions and 28 deletions
57
modules/services/calibre-web/default.nix
Normal file
57
modules/services/calibre-web/default.nix
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.my.services.calibre-web;
|
||||
in
|
||||
{
|
||||
options.my.services.calibre-web = with lib; {
|
||||
enable = mkEnableOption "Calibre-web server";
|
||||
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
default = 8083;
|
||||
example = 8080;
|
||||
description = "Internal port for webui";
|
||||
};
|
||||
|
||||
libraryPath = mkOption {
|
||||
type = with types; either path str;
|
||||
example = /data/media/library;
|
||||
description = "Path to the Calibre library to use";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
services.calibre-web = {
|
||||
enable = true;
|
||||
|
||||
listen = {
|
||||
ip = "127.0.0.1";
|
||||
port = cfg.port;
|
||||
};
|
||||
|
||||
group = "media";
|
||||
|
||||
options = {
|
||||
calibreLibrary = cfg.libraryPath;
|
||||
enableBookConversion = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Set-up media group
|
||||
users.groups.media = { };
|
||||
|
||||
my.services.nginx.virtualHosts = [
|
||||
{
|
||||
subdomain = "library";
|
||||
inherit (cfg) port;
|
||||
}
|
||||
];
|
||||
|
||||
my.services.backup = {
|
||||
paths = [
|
||||
"/var/lib/calibre-web" # For `app.db` and `gdrive.db`
|
||||
cfg.libraryPath
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue