❄️ Nix configurations
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 29 lines 590 B view raw
1{ 2 config, 3 lib, 4 pkgs, 5 ... 6}: { 7 8 home.packages = with pkgs; [ 9 musikcube 10 ffmpeg 11 ]; 12 13 programs.beets = { 14 enable = true; 15 mpdIntegration.enableStats = true; #mdpstats plugin 16 mpdIntegration.enableUpdate = false; # mdpupdate plugin 17 18 settings = { 19 directory = config.xdg.userDirs.music; 20 library = "${config.xdg.userDirs.music}/musiclibrary.db"; 21 clutter = [ 22 "Thumbs.DB" 23 ".DS_Store" 24 ".directory" 25 ]; 26 }; 27 28 }; 29}