nix/secrets.example.nix

28 lines
739 B
Nix
Raw Permalink Normal View History

2024-12-02 03:57:34 -07:00
{
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;
};
};
2024-12-02 03:57:34 -07:00
};
passwords = {
# The hashed /etc/shadow password to use for the main user ty
users.ty = null;
};
}