18 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
let
 | 
						|
  cfg = config.profiles.gaming;
 | 
						|
in
 | 
						|
{
 | 
						|
 | 
						|
  imports = [
 | 
						|
    ../../modules
 | 
						|
  ];
 | 
						|
  
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    homeModules.desktop = {
 | 
						|
      gaming = {
 | 
						|
        slippi.enable = true;
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |