40 lines
		
	
	
	
		
			749 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			749 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  pkgs,
 | 
						|
  config,
 | 
						|
  ...
 | 
						|
}:
 | 
						|
let
 | 
						|
  cfg = config.my.mpd;
 | 
						|
in
 | 
						|
{
 | 
						|
  options.my.mpd.enable = lib.mkEnableOption { };
 | 
						|
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    services.mpd = {
 | 
						|
      enable = true;
 | 
						|
      musicDirectory = config.home.homeDirectory + "/Música";
 | 
						|
      extraConfig = ''
 | 
						|
        restore_paused "yes"
 | 
						|
        auto_update "yes"
 | 
						|
        audio_output {
 | 
						|
            type    "pulse"
 | 
						|
            name    "My Pulse Output"
 | 
						|
            mixer_type  "hardware"
 | 
						|
        }
 | 
						|
        filesystem_charset    "UTF-8"
 | 
						|
      '';
 | 
						|
    };
 | 
						|
    services.mpdris2 = {
 | 
						|
      enable = true;
 | 
						|
      multimediaKeys = true;
 | 
						|
      notifications = true;
 | 
						|
    };
 | 
						|
    home.packages = with pkgs; [
 | 
						|
      musmenu
 | 
						|
      python3Packages.deemix
 | 
						|
      dzadd
 | 
						|
      mpdDup
 | 
						|
    ];
 | 
						|
  };
 | 
						|
}
 |