22 lines
364 B
Nix
22 lines
364 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./hardware-configuration.nix
|
||
|
../modules/nasp.nix
|
||
|
];
|
||
|
nasp = {
|
||
|
enable = true;
|
||
|
gSeries = {
|
||
|
enable = true;
|
||
|
serial = 11;
|
||
|
eth0Name = "eno1";
|
||
|
eth1Name = "eno2";
|
||
|
eth2Name = "enp2s0np0";
|
||
|
};
|
||
|
};
|
||
|
networking.hostId = "50480d34";
|
||
|
system.stateVersion = "24.05";
|
||
|
}
|