NixOS-Config/hosts/c1/configuration.nix
2025-10-28 22:45:24 +08:00

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";
}