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