19 lines
		
	
	
		
			371 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			371 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, config, ... }:
 | |
| {
 | |
|   imports = [
 | |
|     ./noita-helper.nix
 | |
|   ];
 | |
|   home.file.".local/bin/hl-no-opacity" = {
 | |
|     source = ./hl-no-opacity.sh;
 | |
|     executable = true;
 | |
|   };
 | |
|   home.file.".local/bin/rofi-launcher" = {
 | |
|     source = ./rofi-launcher.sh;
 | |
|     executable = true;
 | |
|   };
 | |
|   home.file.".local/bin/randomwp" = {
 | |
|     source = ./randomwp.sh;
 | |
|     executable = true;
 | |
|   };
 | |
| }
 |