nix/secrets.example.nix
2024-12-02 06:52:33 -07:00

13 lines
No EOL
285 B
Nix

{
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;
};
}