19 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   osConfig,
 | |
|   pkgs,
 | |
|   ...
 | |
| }: let
 | |
|   inherit (lib) mkIf elem;
 | |
|   inherit (builtins) attrValues;
 | |
|   inherit (osConfig.ooknet.workstation) profiles;
 | |
| in {
 | |
|   config = mkIf (elem "gaming" profiles) {
 | |
|     home.packages = attrValues {
 | |
|       inherit
 | |
|         (pkgs)
 | |
|         bottles
 | |
|         ;
 | |
|     };
 | |
|   };
 | |
| }
 |