❄️ Nix configurations
0
fork

Configure Feed

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

add music config

A.Ottr 3dc942ed c2effd09

+30
+29
home/common/music.nix
··· 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 = true; # mdpupdate plugin 17 + 18 + settings = { 19 + directory = "${config.home.homeDirectory}/Music"; 20 + library = "${config.home.homeDirectory}/Music/musiclibrary.db"; 21 + clutter = [ 22 + "Thumbs.DB" 23 + ".DS_Store" 24 + ".directory" 25 + ]; 26 + }; 27 + 28 + }; 29 + }
+1
home/otter/default.nix
··· 6 6 ../common/fish.nix 7 7 ../common/git.nix 8 8 # ../common/gpg.nix 9 + ../common/music.nix 9 10 10 11 ../common/dev 11 12 ../common/dev/blog.nix