mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.services.vdr;
|
||
|
libDir = "/var/lib/vdr";
|
||
|
in {
|
||
|
|
||
|
###### interface
|
||
|
|
||
|
options = {
|
||
|
|
||
|
services.vdr = {
|
||
|
enable = mkEnableOption "enable VDR. Please put config into ${libDir}.";
|
||
|
|
||
|
package = mkOption {
|
||
|
type = types.package;
|
||
|
default = pkgs.vdr;
|
||
|
defaultText = "pkgs.vdr";
|
||
|
example = literalExample "pkgs.wrapVdr.override { plugins = with pkgs.vdrPlugins; [ hello ]; }";
|
||
|
description = "Package to use.";
|
||
|
};
|
||
|
|
||
|
videoDir = mkOption {
|
||
|
type = types.path;
|
||
|
default = "/srv/vdr/video";
|
||
|
description = "Recording directory (must exist)";
|
||
|
};
|
||
|
|
||
|
extraArguments = mkOption {
|
||
|
type = types.listOf types.str;
|
||
|
default = [];
|
||
|
description = "Additional command line arguments to pass to VDR.";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
###### implementation
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
|
||
|
systemd.services.vdr = {
|
||
|
description = "VDR";
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
serviceConfig = {
|
||
|
ExecStart = ''
|
||
|
${cfg.package}/bin/vdr \
|
||
|
--video="${cfg.videoDir}" \
|
||
|
--config="${libDir}" \
|
||
|
${escapeShellArgs cfg.extraArguments}
|
||
|
'';
|
||
|
User = "vdr";
|
||
|
CacheDirectory = "vdr";
|
||
|
StateDirectory = "vdr";
|
||
|
Restart = "on-failure";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
users.users.vdr = {
|
||
|
group = "vdr";
|
||
|
home = libDir;
|
||
|
};
|
||
|
|
||
|
users.groups.vdr = {};
|
||
|
};
|
||
|
}
|