Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created April 8, 2020 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthew-piziak/7491ddc11acf8408a5a99766aeff11f6 to your computer and use it in GitHub Desktop.
Save matthew-piziak/7491ddc11acf8408a5a99766aeff11f6 to your computer and use it in GitHub Desktop.
{ lib, pkgs, config, ... }:
with lib;
let cfg = config.services.plex-mpv-shim;
in {
options.services.plex-mpv-shim = { enable = mkEnableOption "plex-mpv-shim service"; };
config = lib.mkIf cfg.enable {
systemd.user.services.plex-mpv-shim = {
serviceConfig.ExecStart = "${pkgs.unstable.plex-mpv-shim}/bin/plex-mpv-shim";
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment