mirror of
				https://github.com/lxstinthesky/matrix.git
				synced 2025-11-04 09:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			173 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			173 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, modulesPath, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    (modulesPath + "/profiles/qemu-guest.nix")
 | 
						|
    ./aarch64.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  networking.useDHCP = lib.mkDefault true;
 | 
						|
} |