15 lines
		
	
	
		
			250 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			250 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| let
 | |
|   noita-helper = pkgs.writeShellApplication {
 | |
|     name = "noita-helper";
 | |
|     runtimeInputs = with pkgs; [
 | |
|       grim
 | |
|       jq
 | |
|     ];
 | |
|     text = (builtins.readFile ./noita-helper.sh);
 | |
|   };
 | |
| in
 | |
| {
 | |
|   home.packages = [ noita-helper ];
 | |
| }
 |