21 lines
		
	
	
		
			337 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			337 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports =
 | 
						|
    [
 | 
						|
      ./hardware-configuration.nix
 | 
						|
    ];
 | 
						|
  nasp = {
 | 
						|
    enable = true;
 | 
						|
    gSeries = {
 | 
						|
      enable = true;
 | 
						|
      serial = 1;
 | 
						|
      eth0Name = "eno1";
 | 
						|
      eth1Name = "eno2";
 | 
						|
      eth2Name = "enp2s0np0";
 | 
						|
    };
 | 
						|
  };
 | 
						|
  networking.hostId = "ff6f23cd";
 | 
						|
  system.stateVersion = "24.05";
 | 
						|
}
 |