nixpkgs/nixos/modules/services/audio/squeezelite.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.2 KiB
Nix
Raw Normal View History

2016-06-11 12:46:02 +00:00
{ config, lib, pkgs, ... }:
let
inherit (lib) mkEnableOption mkIf mkOption optionalString types;
dataDir = "/var/lib/squeezelite";
cfg = config.services.squeezelite;
pkg = if cfg.pulseAudio then pkgs.squeezelite-pulse else pkgs.squeezelite;
bin = "${pkg}/bin/${pkg.pname}";
2016-06-11 12:46:02 +00:00
in
{
2016-06-11 12:46:02 +00:00
###### interface
options.services.squeezelite = {
enable = mkEnableOption (lib.mdDoc "Squeezelite, a software Squeezebox emulator");
2016-06-11 12:46:02 +00:00
pulseAudio = mkEnableOption (lib.mdDoc "pulseaudio support");
2016-06-11 12:46:02 +00:00
extraArguments = mkOption {
default = "";
type = types.str;
description = lib.mdDoc ''
Additional command line arguments to pass to Squeezelite.
'';
2016-06-11 12:46:02 +00:00
};
};
###### implementation
config = mkIf cfg.enable {
systemd.services.squeezelite = {
2016-06-11 12:46:02 +00:00
wantedBy = [ "multi-user.target" ];
after = [ "network.target" "sound.target" ];
description = "Software Squeezebox emulator";
serviceConfig = {
DynamicUser = true;
ExecStart = "${bin} -N ${dataDir}/player-name ${cfg.extraArguments}";
StateDirectory = builtins.baseNameOf dataDir;
SupplementaryGroups = "audio";
2016-06-11 12:46:02 +00:00
};
};
};
}