ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ 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}";
|
|
|
|
in
|
|
{
|
|
|
|
###### interface
|
|
|
|
options.services.squeezelite = {
|
|
enable = mkEnableOption (lib.mdDoc "Squeezelite, a software Squeezebox emulator");
|
|
|
|
pulseAudio = mkEnableOption (lib.mdDoc "pulseaudio support");
|
|
|
|
extraArguments = mkOption {
|
|
default = "";
|
|
type = types.str;
|
|
description = lib.mdDoc ''
|
|
Additional command line arguments to pass to Squeezelite.
|
|
'';
|
|
};
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.squeezelite = {
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|