mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
129 lines
3.7 KiB
Nix
129 lines
3.7 KiB
Nix
# This service is adapted from the NixOS module.
|
|
{ config, options, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.mopidy;
|
|
|
|
# The configuration format of Mopidy. It seems to use configparser with
|
|
# some quirky handling of its types. You can see how they're handled in
|
|
# `mopidy/config/types.py` from the source code.
|
|
toMopidyConf = with lib; generators.toINI {
|
|
mkKeyValue = generators.mkKeyValueDefault {
|
|
mkValueString = v:
|
|
if isList v then "\n " + concatStringsSep "\n " v
|
|
else generators.mkValueStringDefault {} v;
|
|
} " = ";
|
|
};
|
|
|
|
mopidyEnv = pkgs.buildEnv {
|
|
name = "mopidy-with-extensions-${pkgs.mopidy.version}";
|
|
paths = lib.closePropagation cfg.extensionPackages;
|
|
pathsToLink = [ "/${pkgs.mopidyPackages.python.sitePackages}" ];
|
|
buildInputs = [ pkgs.makeWrapper ];
|
|
postBuild = ''
|
|
makeWrapper ${pkgs.mopidy}/bin/mopidy $out/bin/mopidy --prefix PYTHONPATH : $out/${pkgs.mopidyPackages.python.sitePackages}
|
|
'';
|
|
};
|
|
|
|
mopidyConfFormat = {}: {
|
|
type = with lib.types;
|
|
let
|
|
valueType = nullOr (oneOf [ bool int float str (listOf valueType) ]) // {
|
|
description = "Mopidy config value";
|
|
};
|
|
in attrsOf (attrsOf valueType);
|
|
|
|
generate = name: value: pkgs.writeText name (toMopidyConf value);
|
|
};
|
|
|
|
settingsFormat = mopidyConfFormat {};
|
|
in {
|
|
options.services.mopidy = {
|
|
enable = lib.mkEnableOption "Mopidy music player daemon";
|
|
|
|
extensionPackages = lib.mkOption {
|
|
default = [ ];
|
|
defaultText = lib.literalExpression "[ ]";
|
|
type = with lib.types; listOf package;
|
|
example = lib.literalExpression
|
|
"with pkgs; [ mopidy-spotify mopidy-mpd mopidy-mpris ]";
|
|
description = ''
|
|
Mopidy extensions that should be loaded by the service.
|
|
'';
|
|
};
|
|
|
|
configuration = lib.mkOption {
|
|
default = {};
|
|
type = settingsFormat.type;
|
|
description = ''
|
|
The Mopidy configuration to be written in the appropriate file in the
|
|
home directory.
|
|
'';
|
|
example = lib.literalExpression ''
|
|
{
|
|
file = {
|
|
media_dirs = [
|
|
"$XDG_MUSIC_DIR|Music"
|
|
"~/library|Library"
|
|
];
|
|
follow_symlinks = true;
|
|
excluded_file_extensions = [
|
|
".html"
|
|
".zip"
|
|
".jpg"
|
|
".jpeg"
|
|
".png"
|
|
];
|
|
};
|
|
|
|
# Please don't put your mopidy-spotify configuration in the public. :)
|
|
# Think of your Spotify Premium subscription!
|
|
spotify = {
|
|
client_id = "CLIENT_ID";
|
|
client_secret = "CLIENT_SECRET";
|
|
};
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.mopidy" pkgs
|
|
lib.platforms.linux)
|
|
];
|
|
|
|
xdg.configFile."mopidy/mopidy.conf".source =
|
|
settingsFormat.generate "mopidy-conf-${config.home.username}" cfg.configuration;
|
|
|
|
systemd.user.services.mopidy = {
|
|
Unit = {
|
|
Description = "mopidy music player daemon";
|
|
After = [ "network.target" "sound.target" ];
|
|
Documentation = [ "https://mopidy.com/" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "${mopidyEnv}/bin/mopidy";
|
|
};
|
|
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
|
|
systemd.user.services.mopidy-scan = {
|
|
Unit = {
|
|
After = [ "network.target" "sound.target" ];
|
|
Description = "mopidy local files scanner";
|
|
Documentation = [ "https://mopidy.com/" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "${mopidyEnv}/bin/mopidy local scan";
|
|
Type = "oneshot";
|
|
};
|
|
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
};
|
|
}
|