18 lines
277 B
Nix
18 lines
277 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports =[
|
|
./hardware-configuration.nix
|
|
];
|
|
nasp = {
|
|
enable = true;
|
|
cSeries = {
|
|
enable = true;
|
|
serial = 1;
|
|
ethLanName = "ens16f0";
|
|
ethRDMAName = "ens2f1np1";
|
|
};
|
|
};
|
|
system.stateVersion = "25.05";
|
|
}
|