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