mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-24 06:19:11 +00:00
users/foo-dogsquared: update music player setup
This commit is contained in:
parent
a545a20880
commit
66092ff8c5
@ -49,12 +49,12 @@ in {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
# My Git credentials.
|
# My Git credentials.
|
||||||
programs.git = let email = "foo.dogsquared@gmail.com"; in {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.gitFull;
|
package = pkgs.gitFull;
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
||||||
userName = "Gabriel Arazas";
|
userName = "Gabriel Arazas";
|
||||||
userEmail = email;
|
userEmail = "foo.dogsquared@gmail.com";
|
||||||
signing.key = "129AFC6B4ABD6B61";
|
signing.key = "129AFC6B4ABD6B61";
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
# This is taken from the official Git book, for future references.
|
# This is taken from the official Git book, for future references.
|
||||||
@ -62,7 +62,7 @@ in {
|
|||||||
smtpserver = "smtp.gmail.com";
|
smtpserver = "smtp.gmail.com";
|
||||||
smtpencryption = "tls";
|
smtpencryption = "tls";
|
||||||
smtpserverport = 587;
|
smtpserverport = 587;
|
||||||
smtpuser = email;
|
smtpuser = config.programs.git.userEmail;
|
||||||
};
|
};
|
||||||
|
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
@ -87,15 +87,17 @@ in {
|
|||||||
library = "${musicDir}/library.db";
|
library = "${musicDir}/library.db";
|
||||||
plugins = [
|
plugins = [
|
||||||
"acousticbrainz"
|
"acousticbrainz"
|
||||||
|
"fetchart"
|
||||||
|
"fromfilename"
|
||||||
"chroma"
|
"chroma"
|
||||||
"deezer"
|
"deezer"
|
||||||
"edit"
|
"edit"
|
||||||
"export"
|
"export"
|
||||||
"fuzzy"
|
"fuzzy"
|
||||||
|
"mbsync"
|
||||||
"playlist"
|
"playlist"
|
||||||
"scrub"
|
"scrub"
|
||||||
"smartplaylist"
|
"smartplaylist"
|
||||||
"spotify"
|
|
||||||
];
|
];
|
||||||
ignore_hidden = true;
|
ignore_hidden = true;
|
||||||
directory = musicDir;
|
directory = musicDir;
|
||||||
|
Loading…
Reference in New Issue
Block a user