lab-infra/machines/krz01/_configuration.nix

41 lines
765 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-10-12 00:20:58 +02:00
lib.extra.mkConfig {
enabledModules = [
# INFO: This list needs to stay sorted alphabetically
];
enabledServices = [
# INFO: This list needs to stay sorted alphabetically
# Machine learning API machine
# "microvm-ml01"
# "microvm-router01"
2024-10-12 00:20:58 +02:00
"nvidia-tesla-k80"
"ollama"
"whisper"
2024-10-12 00:20:58 +02:00
"proxmox"
];
extraConfig = {
microvm = {
host.enable = true;
};
dgn-hardware = {
useZfs = true;
zfsPools = [
"dpool"
"ppool0"
];
};
# We are going to use CUDA here.
nixpkgs.config.cudaSupport = true;
hardware.graphics.enable = true;
services.netbird.enable = true;
networking.firewall.trustedInterfaces = [ "wt0" ];
2024-10-12 00:20:58 +02:00
};
root = ./.;
}