13 lines
285 B
Nix
13 lines
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;
|
||
|
};
|
||
|
}
|