1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/beets.nix

111 lines
3.0 KiB
Nix
Raw Normal View History

2017-01-07 19:16:26 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.beets;
yamlFormat = pkgs.formats.yaml { };
2020-02-02 00:39:17 +01:00
in {
meta.maintainers = with maintainers; [ rycee Scrumplex ];
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 = ''
2018-12-04 23:00:11 +01:00
Whether to enable the beets music library manager. This
defaults to `false` for state
2018-12-04 23:00:11 +01:00
version  19.03. For earlier versions beets is enabled if
{option}`programs.beets.settings` is non-empty.
2018-12-04 23:00:11 +01:00
'';
};
2019-12-18 01:25:52 +01:00
package = mkOption {
type = types.package;
default = pkgs.beets;
defaultText = literalExpression "pkgs.beets";
2020-02-02 00:39:17 +01:00
example =
literalExpression "(pkgs.beets.override { enableCheck = true; })";
description = ''
The `beets` package to use.
2019-12-18 01:25:52 +01:00
Can be used to specify extensions.
'';
};
2017-01-07 19:16:26 +01:00
settings = mkOption {
type = yamlFormat.type;
2020-02-02 00:39:17 +01:00
default = { };
description = ''
2017-01-15 20:03:55 +01:00
Configuration written to
{file}`$XDG_CONFIG_HOME/beets/config.yaml`
2017-01-15 20:03:55 +01:00
'';
2017-01-07 19:16:26 +01:00
};
mpdIntegration = {
enableStats = mkEnableOption "mpdstats plugin and service";
2023-05-12 23:25:49 +02:00
enableUpdate = mkEnableOption "mpdupdate plugin";
2023-05-12 23:25:49 +02:00
host = mkOption {
type = types.str;
default = "localhost";
example = "10.0.0.42";
description = "The host that mpdstats will connect to.";
};
2023-05-12 23:25:49 +02:00
port = mkOption {
type = types.port;
default = config.services.mpd.network.port;
defaultText = literalExpression "config.services.mpd.network.port";
example = 6601;
description = "The port that mpdstats will connect to.";
};
};
2017-01-07 19:16:26 +01:00
};
};
config = mkMerge [
(mkIf cfg.enable {
home.packages = [ cfg.package ];
2017-01-07 19:16:26 +01:00
xdg.configFile."beets/config.yaml".source =
yamlFormat.generate "beets-config" cfg.settings;
})
2023-05-12 23:25:49 +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
(mkIf cfg.mpdIntegration.enableStats {
programs.beets.settings.plugins = [ "mpdstats" ];
})
2023-05-12 23:25:49 +02:00
(mkIf cfg.mpdIntegration.enableUpdate {
programs.beets.settings.plugins = [ "mpdupdate" ];
})
2023-05-12 23:25:49 +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
}