Includes the following fixes: * users/wpcarro: disable pulseaudio option (can't have pipewire _and_ PA) * users/aspen: disable pipewire (there's PA config here, so whatever) * bump wasm-bindgen in Rust frontend projects * users/tazjin: disable builds for frog (it's in storage) Change-Id: Ia508b14b84619d06c1d98f7245e84d66bc791592 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12466 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: aspen <root@gws.fyi>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { depot, lib, ... }:
 | |
| 
 | |
| let systemFor = sys: (depot.ops.nixos.nixosFor sys).system;
 | |
| in depot.nix.readTree.drvTargets {
 | |
|   arbatSystem = systemFor depot.users.tazjin.nixos.arbat;
 | |
|   camdenSystem = systemFor depot.users.tazjin.nixos.camden;
 | |
|   tverskoySystem = systemFor depot.users.tazjin.nixos.tverskoy;
 | |
|   zamalekSystem = systemFor depot.users.tazjin.nixos.zamalek;
 | |
|   koptevoRaw = depot.ops.nixos.nixosFor depot.users.tazjin.nixos.koptevo;
 | |
|   koptevoSystem = systemFor depot.users.tazjin.nixos.koptevo;
 | |
|   khamovnikSystem = systemFor depot.users.tazjin.nixos.khamovnik;
 | |
| 
 | |
|   # no need to build this while the machine is in storage
 | |
|   # frogSystem = systemFor depot.users.tazjin.nixos.frog;
 | |
| }
 |