16 lines
		
	
	
	
		
			255 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			255 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  pkgs,
 | 
						|
  config,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  options.programs.gdx-liftoff = {
 | 
						|
    enable = lib.mkEnableOption "enable gdx-liftoff";
 | 
						|
  };
 | 
						|
 | 
						|
  config = lib.mkIf config.programs.gdx-liftoff.enable {
 | 
						|
    home.packages = with pkgs; [
 | 
						|
      gdx-liftoff
 | 
						|
    ];
 | 
						|
  };
 | 
						|
}
 |