NixOS-Config/hosts/g17/configuration.nix
2024-06-15 12:46:30 +08:00

22 lines
359 B
Nix

{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../modules/nasp.nix
];
nasp = {
enable = true;
gSeries = {
enable = true;
serial = 17;
eth0Name = "eno2";
eth1Name = "eno1";
eth2Name = "eno4";
};
};
networking.hostId = "c5543d16";
system.stateVersion = "24.05";
}