mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.calibre-server;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.calibre-server = {
|
|
|
|
enable = mkEnableOption "calibre-server";
|
|
|
|
libraryDir = mkOption {
|
|
description = ''
|
|
The directory where the Calibre library to serve is.
|
|
'';
|
|
type = types.path;
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.calibre-server =
|
|
{
|
|
description = "Calibre Server";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
User = "calibre-server";
|
|
Restart = "always";
|
|
ExecStart = "${pkgs.calibre}/bin/calibre-server --with-library=${cfg.libraryDir}";
|
|
};
|
|
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.calibre ];
|
|
|
|
users.extraUsers.calibre-server = {
|
|
uid = config.ids.uids.calibre-server;
|
|
group = "calibre-server";
|
|
};
|
|
|
|
users.extraGroups.calibre-server = {
|
|
gid = config.ids.gids.calibre-server;
|
|
};
|
|
|
|
};
|
|
|
|
}
|