mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cb9f03d519
This is adapted from the `services.mopidy` NixOS module. The difference is the setting can be configured with Nix language, taking advantage of generators from nixpkgs. The module is also suited more for user-specific configuration, removing the `extraConfigFiles` and `dataDir` option.
38 lines
910 B
Nix
38 lines
910 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.mopidy = {
|
|
enable = true;
|
|
settings = {
|
|
file = {
|
|
enabled = true;
|
|
media_dirs = [ "$XDG_MUSIC_DIR|Music" "~/Downloads|Downloads" ];
|
|
};
|
|
|
|
spotify = {
|
|
enabled = true;
|
|
client_id = "TOTALLY_NOT_A_FAKE_CLIENT_ID";
|
|
client_secret = "YOU_CAN_USE_ME_FOR_YOUR_SPOTIFY_PREMIUM_SUBSCRIPTION";
|
|
};
|
|
};
|
|
};
|
|
|
|
test.stubs.mopidy = {
|
|
version = "0";
|
|
outPath = null;
|
|
buildScript = ''
|
|
mkdir -p $out/bin
|
|
touch $out/bin/mopidy
|
|
chmod +x $out/bin/mopidy
|
|
'';
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/mopidy.service
|
|
assertFileExists home-files/.config/systemd/user/mopidy-scan.service
|
|
|
|
assertFileExists home-files/.config/mopidy/mopidy.conf
|
|
assertFileContent home-files/.config/mopidy/mopidy.conf \
|
|
${./basic-configuration.conf}
|
|
'';
|
|
}
|