13 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, config, pkgs, ... }:
 | |
| 
 | |
| let
 | |
|   cfg = config.homeModules.desktop.creative.audio.audacity;
 | |
|   inherit (lib) mkIf mkEnableOption;
 | |
| in
 | |
| 
 | |
| {
 | |
|   options.homeModules.desktop.creative.audio.audacity.enable = mkEnableOption "Enable audacity home module";
 | |
|   config = mkIf cfg.enable {
 | |
|     home.packages = [ pkgs.audacity ];
 | |
|   };
 | |
| }
 |