A Framework laptop Change-Id: I646e705d12b76c83e8cdcf11c618d07db3a21f0c Reviewed-on: https://cl.tvl.fyi/c/depot/+/11235 Reviewed-by: aspen <root@gws.fyi> Tested-by: BuildkiteCI
		
			
				
	
	
		
			48 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
args @ { depot, pkgs, ... }:
 | 
						|
 | 
						|
rec {
 | 
						|
  mugwump = import ./machines/mugwump.nix;
 | 
						|
 | 
						|
  mugwumpSystem = (depot.ops.nixos.nixosFor mugwump).system;
 | 
						|
 | 
						|
  roswell = import ./machines/roswell.nix;
 | 
						|
 | 
						|
  roswellSystem = (depot.ops.nixos.nixosFor ({ ... }: {
 | 
						|
    imports = [
 | 
						|
      ./machines/roswell.nix
 | 
						|
      "${pkgs.home-manager.src}/nixos"
 | 
						|
    ];
 | 
						|
 | 
						|
    # Use the same nixpkgs as everything else
 | 
						|
    home-manager.useGlobalPkgs = true;
 | 
						|
 | 
						|
    home-manager.users.aspen = { config, lib, ... }: {
 | 
						|
      imports = [ ../home/machines/roswell.nix ];
 | 
						|
      lib.depot = depot;
 | 
						|
    };
 | 
						|
  })).system;
 | 
						|
 | 
						|
  ogopogo = import ./machines/ogopogo.nix;
 | 
						|
 | 
						|
  ogopogoSystem = (depot.ops.nixos.nixosFor ogopogo).system;
 | 
						|
 | 
						|
  yeren = import ./machines/yeren.nix;
 | 
						|
 | 
						|
  yerenSystem = (depot.ops.nixos.nixosFor yeren).system;
 | 
						|
 | 
						|
  lusca = import ./machines/lusca.nix;
 | 
						|
 | 
						|
  luscaSystem = (depot.ops.nixos.nixosFor lusca).system;
 | 
						|
 | 
						|
  iso = import ./iso.nix args;
 | 
						|
 | 
						|
  meta.ci.targets = [
 | 
						|
    "mugwumpSystem"
 | 
						|
    "roswellSystem"
 | 
						|
    "luscaSystem"
 | 
						|
    "ogopogoSystem"
 | 
						|
    "yerenSystem"
 | 
						|
 | 
						|
    "iso"
 | 
						|
  ];
 | 
						|
}
 |