NixOS-Config/hosts/c2/configuration.nix

17 lines
244 B
Nix

{ config, lib, pkgs, ... }:
{
imports =[
./hardware-configuration.nix
];
nasp = {
enable = true;
cSeries = {
enable = true;
serial = 2;
ethLanName = "ens16f0";
};
};
system.stateVersion = "25.05";
}