nix/secrets.example.nix

28 lines
No EOL
739 B
Nix

{
programs = {
beets = {
# The API key to use for google custom search lyrics backend
google_api_key = null;
};
rescrobbled = {
enable = false;
# The credentials to use for last.fm and listenbrainz
lastfm = {
key = null;
secret = null;
# Generated by manually running the rescrobbled daemon and reading $XDG_CONFIG_HOME/rescrobbled/session
session = null;
};
listenbrainz = {
token = null;
};
};
};
passwords = {
# The hashed /etc/shadow password to use for the main user ty
users.ty = null;
};
}