2019-07-19 22:13:06 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.spotifyd;
|
2021-06-08 20:05:57 +02:00
|
|
|
toml = pkgs.formats.toml { };
|
|
|
|
warnConfig =
|
|
|
|
if cfg.config != "" then
|
|
|
|
lib.trace "Using the stringly typed .config attribute is discouraged. Use the TOML typed .settings attribute instead."
|
|
|
|
else
|
|
|
|
id;
|
|
|
|
spotifydConf =
|
|
|
|
if cfg.settings != { } then
|
|
|
|
toml.generate "spotify.conf" cfg.settings
|
|
|
|
else
|
|
|
|
warnConfig (pkgs.writeText "spotifyd.conf" cfg.config);
|
2019-07-19 22:13:06 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.spotifyd = {
|
|
|
|
enable = mkEnableOption "spotifyd, a Spotify playing daemon";
|
|
|
|
|
|
|
|
config = mkOption {
|
|
|
|
default = "";
|
|
|
|
type = types.lines;
|
2021-06-08 20:05:57 +02:00
|
|
|
description = ''
|
|
|
|
(Deprecated) Configuration for Spotifyd. For syntax and directives, see
|
2024-03-12 16:07:32 +01:00
|
|
|
<https://docs.spotifyd.rs/config/File.html>.
|
2021-06-08 20:05:57 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
default = { };
|
|
|
|
type = toml.type;
|
|
|
|
example = {
|
|
|
|
global.bitrate = 320;
|
|
|
|
};
|
2019-07-19 22:13:06 +02:00
|
|
|
description = ''
|
|
|
|
Configuration for Spotifyd. For syntax and directives, see
|
2024-03-12 16:07:32 +01:00
|
|
|
<https://docs.spotifyd.rs/config/File.html>.
|
2019-07-19 22:13:06 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-06-08 20:05:57 +02:00
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
assertion = cfg.config == "" || cfg.settings == { };
|
|
|
|
message = "At most one of the .config attribute and the .settings attribute may be set";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2019-07-19 22:13:06 +02:00
|
|
|
systemd.services.spotifyd = {
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2023-10-03 22:21:50 -07:00
|
|
|
wants = [ "network-online.target" ];
|
2019-07-19 22:13:06 +02:00
|
|
|
after = [
|
|
|
|
"network-online.target"
|
|
|
|
"sound.target"
|
|
|
|
];
|
|
|
|
description = "spotifyd, a Spotify playing daemon";
|
2021-03-09 02:50:05 +03:00
|
|
|
environment.SHELL = "/bin/sh";
|
2019-07-19 22:13:06 +02:00
|
|
|
serviceConfig = {
|
2019-09-21 17:10:00 -05:00
|
|
|
ExecStart = "${pkgs.spotifyd}/bin/spotifyd --no-daemon --cache-path /var/cache/spotifyd --config-path ${spotifydConf}";
|
2019-07-19 22:13:06 +02:00
|
|
|
Restart = "always";
|
|
|
|
RestartSec = 12;
|
|
|
|
DynamicUser = true;
|
|
|
|
CacheDirectory = "spotifyd";
|
|
|
|
SupplementaryGroups = [ "audio" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
meta.maintainers = [ maintainers.anderslundstedt ];
|
|
|
|
}
|