0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 08:31:01 +03:00
nixpkgs/nixos/modules/services/audio/spotifyd.nix

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

82 lines
2 KiB
Nix
Raw Normal View History

2019-07-19 22:13:06 +02:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.services.spotifyd;
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;
description = ''
(Deprecated) Configuration for Spotifyd. For syntax and directives, see
<https://docs.spotifyd.rs/config/File.html>.
'';
};
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
<https://docs.spotifyd.rs/config/File.html>.
2019-07-19 22:13:06 +02:00
'';
};
};
};
config = mkIf cfg.enable {
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" ];
wants = [ "network-online.target" ];
2019-07-19 22:13:06 +02:00
after = [
"network-online.target"
"sound.target"
];
description = "spotifyd, a Spotify playing daemon";
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 ];
}