17 lines
		
	
	
	
		
			314 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			314 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, ... }:
 | |
| {
 | |
|   imports = [
 | |
|     #./spotify --- still needs to be implemented
 | |
|     ./easyeffects
 | |
|     ./tui
 | |
|   ];
 | |
| 
 | |
|   options.homeModules.desktop.media.music = {
 | |
|     tui = {
 | |
|       enable = lib.mkEnableOption "Enable tui music";
 | |
|     };
 | |
|     spotify = {
 | |
|       enable = lib.mkEnableOption "Enable spotify";
 | |
|     };
 | |
|   };
 | |
| }
 |