14 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }:
 | 
						|
{
 | 
						|
  boot.loader.grub = {
 | 
						|
    enable = true;
 | 
						|
    device = "/dev/vda";
 | 
						|
  };
 | 
						|
 | 
						|
  networking = {
 | 
						|
    hostName = "base";
 | 
						|
    firewall.enable = true;
 | 
						|
  };
 | 
						|
 | 
						|
  system.stateVersion = "24.11";
 | 
						|
}
 |