diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-24 11:49:03 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-24 11:49:03 +0100 |
commit | 8096ed8c66f08afa02714f3660f8539d48f08da8 (patch) | |
tree | 3b97972344b95b529ae1c064a9070c69284160fd /modules/helix-player.nix | |
parent | 276c0a88f5ed89dddfccb7d197559dbc6c95f5b4 (diff) |
move services.helix-player to eth.services
also harden the systemd config.
Diffstat (limited to 'modules/helix-player.nix')
-rw-r--r-- | modules/helix-player.nix | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/modules/helix-player.nix b/modules/helix-player.nix deleted file mode 100644 index d73fc16..0000000 --- a/modules/helix-player.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ config, lib, pkgs, ... }: -with lib; - -let - - cfg = config.services.helix-player; - helixPackage = pkgs.eth.helix; - - runtimeDirectory = "helix-player"; - socket = "/run/${runtimeDirectory}/listen.sock"; - -in { - - options.services.helix-player = { - - enable = mkEnableOption "Whether to enable helix-player"; - - socket = mkOption { - type = types.str; - readOnly = true; - description = "Path of the UNIX socket to listen on."; - example = socket; - }; - }; - - - config = mkIf cfg.enable { - - services.helix-player.socket = socket; - - environment.systemPackages = [ - helixPackage - ]; - - systemd.services.helix-player = { - enable = true; - description = "Helix UPnP player & controller"; - wants = [ "network.target" ]; - after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; - serviceConfig = { - DynamicUser = "yes"; - Group = config.services.nginx.group; - RuntimeDirectory = "${runtimeDirectory}"; - ExecStart = "${helixPackage}/bin/helix-player -socket ${socket}"; - }; - }; - }; - -} |