feat: add host c1

This commit is contained in:
Dict Xiong 2025-10-28 22:45:24 +08:00
parent b2b5deb81d
commit 3f63ea2c43
5 changed files with 69 additions and 25 deletions

View File

@ -10,20 +10,7 @@
let
nixos-x86_64-hosts = [
"g1"
"g2"
"g3"
"g5"
"g6"
"g7"
"g8"
"g10"
"g11"
"g12"
"g13"
"g14"
"g17"
"g18-next"
"web-server"
"c1"
];
nasp = (import ./modules/nasp {
lib = nixpkgs.lib;

View File

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

View File

@ -0,0 +1,40 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "smartpqi" "nvme" "usbhid" "uas" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
networking.hostId = "3d7a3f3a";
fileSystems."/" = {
device = "root/system";
fsType = "zfs";
};
fileSystems."/home2" = {
device = "data/home2";
fsType = "zfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/6907-0724";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/c4a9f9b2-cd67-49b6-94b6-50a1b91b05a2"; }
{ device = "/dev/disk/by-uuid/05541d44-caf4-47a0-af99-6fc7a0de4f90"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View File

@ -165,8 +165,6 @@ in
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-color-emoji
vista-fonts
vista-fonts-chs
roboto-mono
];
};

View File

@ -42,17 +42,20 @@ if [[ "$EUID" == "0" ]]; then
exit 1
fi
ret=$(ask_for_yN "Use GPU?")
if [[ "$ret" == "1" ]]; then
base_command="$base_command \\
--device nvidia.com/gpu=all"
if command -v nvidia-smi 1>/dev/null; then
ret=$(ask_for_yN "Use GPU?")
if [[ "$ret" == "1" ]]; then
base_command="$base_command \\
--device nvidia.com/gpu=all"
fi
fi
ret=$(ask_for_yN "Use RDMA?")
if [[ "$ret" == "1" ]]; then
base_command="$base_command \\
--device=/dev/infiniband/uverbs0"
if command -v ibv_devinfo 1>/dev/null; then
ret=$(ask_for_yN "Use RDMA?")
if [[ "$ret" == "1" ]]; then
base_command="$base_command \\
--device=/dev/infiniband/uverbs0"
fi
fi
image_name="git.nasp.fit/nasp/nasp-ubuntu"
base_command="$base_command \\
-it $image_name"