infrastructure/machines/krz01/_configuration.nix

41 lines
761 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-10-08 12:18:26 +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-08 20:59:13 +02:00
"nvidia-tesla-k80"
"ollama"
"whisper"
2024-10-08 20:59:13 +02:00
"proxmox"
2024-10-08 12:18:26 +02:00
];
extraConfig = {
microvm = {
host.enable = true;
};
2024-10-08 12:18:26 +02:00
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;
2024-10-17 15:33:04 +02:00
networking.firewall.trustedInterfaces = [ "wt0" ];
2024-10-08 12:18:26 +02:00
};
root = ./.;
}