--transparent-clipping is needed to avoid text stacking when terminals are stacked, but it breaks a ton of GUI stuff.
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			269 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			269 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  pkgs,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  services.picom = {
 | 
						|
    enable = true;
 | 
						|
    backend = "glx";
 | 
						|
  };
 | 
						|
  xsession.windowManager.i3.config.startup = [
 | 
						|
    {
 | 
						|
      command = "systemctl --user restart picom";
 | 
						|
      always = true;
 | 
						|
      notification = false;
 | 
						|
    }
 | 
						|
  ];
 | 
						|
}
 |