NixOS-Config/hosts/g3/configuration.nix

22 lines
363 B
Nix
Raw Normal View History

2024-06-13 22:32:42 +08:00
{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../modules/nasp.nix
];
nasp = {
enable = true;
gSeries = {
enable = true;
serial = 3;
eth0Name = "eno1";
eth1Name = "eno2";
eth2Name = "enp2s0np0";
};
};
networking.hostId = "6693ee3d";
system.stateVersion = "24.05";
}