71 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, pkgs, lib, mono, ... }:
 | 
						|
 | 
						|
with lib;
 | 
						|
 | 
						|
let
 | 
						|
  cfg = config.services.emby;
 | 
						|
  emby = pkgs.emby;
 | 
						|
in
 | 
						|
{
 | 
						|
  options = {
 | 
						|
    services.emby = {
 | 
						|
      enable = mkEnableOption "Emby Media Server";
 | 
						|
 | 
						|
      user = mkOption {
 | 
						|
        type = types.str;
 | 
						|
        default = "emby";
 | 
						|
        description = "User account under which Emby runs.";
 | 
						|
      };
 | 
						|
 | 
						|
      group = mkOption {
 | 
						|
        type = types.str;
 | 
						|
        default = "emby";
 | 
						|
        description = "Group under which emby runs.";
 | 
						|
      };
 | 
						|
 | 
						|
      dataDir = mkOption {
 | 
						|
        type = types.path;
 | 
						|
        default = "/var/lib/emby/ProgramData-Server";
 | 
						|
        description = "Location where Emby stores its data.";
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  config = mkIf cfg.enable {
 | 
						|
    systemd.services.emby = {
 | 
						|
      description = "Emby Media Server";
 | 
						|
      after = [ "network.target" ];
 | 
						|
      wantedBy = [ "multi-user.target" ];
 | 
						|
      preStart = ''
 | 
						|
        test -d ${cfg.dataDir} || {
 | 
						|
          echo "Creating initial Emby data directory in ${cfg.dataDir}"
 | 
						|
          mkdir -p ${cfg.dataDir}
 | 
						|
          chown -R ${cfg.user}:${cfg.group} ${cfg.dataDir}
 | 
						|
          }
 | 
						|
      '';
 | 
						|
 | 
						|
      serviceConfig = {
 | 
						|
        Type = "simple";
 | 
						|
        User = cfg.user;
 | 
						|
        Group = cfg.group;
 | 
						|
        PermissionsStartOnly = "true";
 | 
						|
        ExecStart = "${pkgs.emby}/bin/MediaBrowser.Server.Mono";
 | 
						|
        Restart = "on-failure";
 | 
						|
      };
 | 
						|
    };
 | 
						|
 | 
						|
    users.extraUsers = mkIf (cfg.user == "emby") {
 | 
						|
      emby = {
 | 
						|
        group = cfg.group;
 | 
						|
        uid = config.ids.uids.emby;
 | 
						|
      };
 | 
						|
    };
 | 
						|
 | 
						|
    users.extraGroups = mkIf (cfg.group == "emby") {
 | 
						|
      emby = {
 | 
						|
        gid = config.ids.gids.emby;
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |