uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
63
nixos/modules/services/networking/tvheadend.nix
Normal file
63
nixos/modules/services/networking/tvheadend.nix
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let cfg = config.services.tvheadend;
|
||||
pidFile = "${config.users.users.tvheadend.home}/tvheadend.pid";
|
||||
in
|
||||
|
||||
{
|
||||
options = {
|
||||
services.tvheadend = {
|
||||
enable = mkEnableOption "Tvheadend";
|
||||
httpPort = mkOption {
|
||||
type = types.int;
|
||||
default = 9981;
|
||||
description = "Port to bind HTTP to.";
|
||||
};
|
||||
|
||||
htspPort = mkOption {
|
||||
type = types.int;
|
||||
default = 9982;
|
||||
description = "Port to bind HTSP to.";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
users.users.tvheadend = {
|
||||
description = "Tvheadend Service user";
|
||||
home = "/var/lib/tvheadend";
|
||||
createHome = true;
|
||||
isSystemUser = true;
|
||||
group = "tvheadend";
|
||||
};
|
||||
users.groups.tvheadend = {};
|
||||
|
||||
systemd.services.tvheadend = {
|
||||
description = "Tvheadend TV streaming server";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
Type = "forking";
|
||||
PIDFile = pidFile;
|
||||
Restart = "always";
|
||||
RestartSec = 5;
|
||||
User = "tvheadend";
|
||||
Group = "video";
|
||||
ExecStart = ''
|
||||
${pkgs.tvheadend}/bin/tvheadend \
|
||||
--http_port ${toString cfg.httpPort} \
|
||||
--htsp_port ${toString cfg.htspPort} \
|
||||
-f \
|
||||
-C \
|
||||
-p ${pidFile} \
|
||||
-u tvheadend \
|
||||
-g video
|
||||
'';
|
||||
ExecStop = "${pkgs.coreutils}/bin/rm ${pidFile}";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue