mirror of
				https://github.com/ItsDrike/nixdots
				synced 2025-10-31 14:26:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   osConfig,
 | |
|   pkgs,
 | |
|   lib,
 | |
|   ...
 | |
| }: let
 | |
|   inherit (lib) mkIf;
 | |
|   cfg = osConfig.myOptions.home-manager.programs.launchers.walker;
 | |
| in {
 | |
|   config = mkIf cfg.enable {
 | |
|     home.packages = with pkgs; [
 | |
|       walker
 | |
|     ];
 | |
| 
 | |
|     xdg.configFile = {
 | |
|       "walker/config.json".source = ./config.json;
 | |
|       "walker/style.css".source = ./style.css;
 | |
|     };
 | |
|   };
 | |
| }
 |