33 lines
524 B
Nix
33 lines
524 B
Nix
{ lib, config, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./filesystems.nix
|
|
];
|
|
|
|
networking.hostId = "3275c7d3";
|
|
|
|
boot.kernelPackages = lib.mkForce config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
|
|
hardware.infiniband = {
|
|
enable = true;
|
|
};
|
|
|
|
modules = {
|
|
boot.grub.enable = true;
|
|
hardware = {
|
|
form.server = true;
|
|
};
|
|
};
|
|
|
|
documentation.man.man-db.enable = false;
|
|
|
|
persist = {
|
|
directories = [
|
|
];
|
|
|
|
files = [
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|