forked from jan-leila/nix-config
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   pkgs,
 | |
|   config,
 | |
|   ...
 | |
| }: {
 | |
|   options.programs.mfoc = {
 | |
|     enable = lib.mkEnableOption "enable mfoc";
 | |
|   };
 | |
| 
 | |
|   config = lib.mkIf config.programs.mfoc.enable {
 | |
|     home.packages = with pkgs; [
 | |
|       mfoc
 | |
|     ];
 | |
|   };
 | |
| }
 |