nix/secrets.example.nix

13 lines
285 B
Nix
Raw 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;
};
};
passwords = {
# The hashed /etc/shadow password to use for the main user ty
users.ty = null;
};
}