mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
81e99998f7
* There is no need for hydra to build this, hence preferLocal * service change: do not hardcode a wait time of 5 seconds
34 lines
709 B
Nix
34 lines
709 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.sundtek;
|
|
|
|
in
|
|
{
|
|
options.services.sundtek = {
|
|
enable = mkEnableOption "Sundtek driver";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ pkgs.sundtek ];
|
|
|
|
systemd.services.sundtek = {
|
|
description = "Sundtek driver";
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = ''
|
|
${pkgs.sundtek}/bin/mediasrv -d -v -p ${pkgs.sundtek}/bin ;\
|
|
${pkgs.sundtek}/bin/mediaclient --start --wait-for-devices
|
|
'';
|
|
ExecStop = "${pkgs.sundtek}/bin/mediaclient --shutdown";
|
|
RemainAfterExit = true;
|
|
};
|
|
};
|
|
};
|
|
}
|