20 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{...}: {
 | 
						|
  home.file = {
 | 
						|
    "profile" = {
 | 
						|
      source = ./Catppuccin.profile;
 | 
						|
      target = ".local/share/konsole/Catppuccin.profile";
 | 
						|
    };
 | 
						|
  };
 | 
						|
  home.file = {
 | 
						|
    "colorscheme" = {
 | 
						|
      source = ./Catppuccin-Macchiato.colorscheme;
 | 
						|
      target = ".local/share/konsole/Catppuccin-Macchiato.colorscheme";
 | 
						|
    };
 | 
						|
  };
 | 
						|
  home.file = {
 | 
						|
    "konsolerc" = {
 | 
						|
      source = ./konsolerc;
 | 
						|
      target = ".config/konsolerc";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |