29 lines
717 B
Nix
Executable File
29 lines
717 B
Nix
Executable File
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
sydnix.sops.secrets = {
|
|
lastfm-password = {};
|
|
librefm-password = {};
|
|
};
|
|
|
|
sydnix.mpd = {
|
|
enable = true;
|
|
scrobbling.endpoints = {
|
|
"last.fm" = {
|
|
passwordFile =
|
|
"/home/crumb/.config/sops-nix/secrets/lastfm-password";
|
|
username = "crumb1";
|
|
};
|
|
"libre.fm" = {
|
|
passwordFile =
|
|
"/home/crumb/.config/sops-nix/secrets/librefm-password";
|
|
username = "crumbtoo";
|
|
};
|
|
};
|
|
};
|
|
|
|
# mpdscribble uses our password files, so it is imperative that the service
|
|
# runs only after said password files are brought into existence. }:)
|
|
systemd.user.services.mpdscribble.Unit.After = [ "sops-nix.service" ];
|
|
}
|