NixOS-Config/hosts/g17/configuration.nix
2025-06-12 00:43:35 +08:00

24 lines
450 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";
hardware.nvidia.package = lib.mkForce config.boot.kernelPackages.nvidiaPackages.stable;
system.stateVersion = "24.05";
}