2017-01-07 19:16:26 +01:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
cfg = config.programs.beets;
|
|
|
|
|
|
2020-11-30 03:54:55 +01:00
|
|
|
|
yamlFormat = pkgs.formats.yaml { };
|
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
|
in {
|
2023-05-11 14:03:54 +02:00
|
|
|
|
meta.maintainers = with maintainers; [ rycee Scrumplex ];
|
2017-09-26 23:40:31 +02:00
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
|
options = {
|
|
|
|
|
programs.beets = {
|
2018-12-04 23:00:11 +01:00
|
|
|
|
enable = mkOption {
|
|
|
|
|
type = types.bool;
|
2020-02-02 00:39:17 +01:00
|
|
|
|
default = if versionAtLeast config.home.stateVersion "19.03" then
|
|
|
|
|
false
|
|
|
|
|
else
|
|
|
|
|
cfg.settings != { };
|
2018-12-04 23:00:11 +01:00
|
|
|
|
defaultText = "false";
|
|
|
|
|
description = ''
|
|
|
|
|
Whether to enable the beets music library manager. This
|
|
|
|
|
defaults to <literal>false</literal> for state
|
|
|
|
|
version ≥ 19.03. For earlier versions beets is enabled if
|
|
|
|
|
<option>programs.beets.settings</option> is non-empty.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-18 01:25:52 +01:00
|
|
|
|
package = mkOption {
|
|
|
|
|
type = types.package;
|
|
|
|
|
default = pkgs.beets;
|
2021-10-09 11:14:08 +02:00
|
|
|
|
defaultText = literalExpression "pkgs.beets";
|
2020-02-02 00:39:17 +01:00
|
|
|
|
example =
|
2021-10-09 11:14:08 +02:00
|
|
|
|
literalExpression "(pkgs.beets.override { enableCheck = true; })";
|
2019-12-18 01:25:52 +01:00
|
|
|
|
description = ''
|
|
|
|
|
The <literal>beets</literal> package to use.
|
|
|
|
|
Can be used to specify extensions.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
|
settings = mkOption {
|
2020-11-30 03:54:55 +01:00
|
|
|
|
type = yamlFormat.type;
|
2020-02-02 00:39:17 +01:00
|
|
|
|
default = { };
|
2017-01-15 20:03:55 +01:00
|
|
|
|
description = ''
|
|
|
|
|
Configuration written to
|
2021-12-09 04:02:00 +01:00
|
|
|
|
<filename>$XDG_CONFIG_HOME/beets/config.yaml</filename>
|
2017-01-15 20:03:55 +01:00
|
|
|
|
'';
|
2017-01-07 19:16:26 +01:00
|
|
|
|
};
|
2023-05-11 14:03:54 +02:00
|
|
|
|
|
|
|
|
|
mpdIntegration = {
|
|
|
|
|
enableStats = mkEnableOption "mpdstats plugin and service";
|
2023-05-12 23:25:49 +02:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
enableUpdate = mkEnableOption "mpdupdate plugin";
|
2023-05-12 23:25:49 +02:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
host = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = "localhost";
|
|
|
|
|
example = "10.0.0.42";
|
2023-05-12 23:25:49 +02:00
|
|
|
|
description = "The host that mpdstats will connect to.";
|
2023-05-11 14:03:54 +02:00
|
|
|
|
};
|
2023-05-12 23:25:49 +02:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
port = mkOption {
|
|
|
|
|
type = types.port;
|
|
|
|
|
default = config.services.mpd.network.port;
|
|
|
|
|
defaultText = literalExpression "config.services.mpd.network.port";
|
|
|
|
|
example = 6601;
|
2023-05-12 23:25:49 +02:00
|
|
|
|
description = "The port that mpdstats will connect to.";
|
2023-05-11 14:03:54 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
2017-01-07 19:16:26 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
config = mkMerge [
|
|
|
|
|
(mkIf cfg.enable {
|
|
|
|
|
home.packages = [ cfg.package ];
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
xdg.configFile."beets/config.yaml".source =
|
|
|
|
|
yamlFormat.generate "beets-config" cfg.settings;
|
|
|
|
|
})
|
2023-05-12 23:25:49 +02:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
(mkIf (cfg.mpdIntegration.enableStats || cfg.mpdIntegration.enableUpdate) {
|
|
|
|
|
programs.beets.settings.mpd = {
|
|
|
|
|
host = cfg.mpdIntegration.host;
|
|
|
|
|
port = cfg.mpdIntegration.port;
|
|
|
|
|
};
|
|
|
|
|
})
|
2023-05-12 23:25:49 +02:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
(mkIf cfg.mpdIntegration.enableStats {
|
|
|
|
|
programs.beets.settings.plugins = [ "mpdstats" ];
|
|
|
|
|
})
|
2023-05-12 23:25:49 +02:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
(mkIf cfg.mpdIntegration.enableUpdate {
|
|
|
|
|
programs.beets.settings.plugins = [ "mpdupdate" ];
|
|
|
|
|
})
|
2023-05-12 23:25:49 +02:00
|
|
|
|
|
2023-05-11 14:03:54 +02:00
|
|
|
|
(mkIf (cfg.enable && cfg.mpdIntegration.enableStats) {
|
|
|
|
|
systemd.user.services."beets-mpdstats" = {
|
|
|
|
|
Unit = {
|
|
|
|
|
Description = "Beets MPDStats daemon";
|
|
|
|
|
After = optional config.services.mpd.enable "mpd.service";
|
|
|
|
|
Requires = optional config.services.mpd.enable "mpd.service";
|
|
|
|
|
};
|
|
|
|
|
Service.ExecStart = "${cfg.package}/bin/beet mpdstats";
|
|
|
|
|
Install.WantedBy = [ "default.target" ];
|
|
|
|
|
};
|
|
|
|
|
})
|
|
|
|
|
];
|
2017-01-07 19:16:26 +01:00
|
|
|
|
}
|