infrastructure/machines/krz01/_configuration.nix

37 lines
733 B
Nix
Raw Normal View History

2024-10-08 12:18:26 +02:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# INFO: This list needs to stay sorted alphabetically
];
enabledServices = [
# INFO: This list needs to stay sorted alphabetically
"microvm-router01"
2024-10-08 20:59:13 +02:00
"nvidia-tesla-k80"
"proxmox"
# Machine learning API machine
"microvm-ml01"
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"
];
};
2024-10-08 12:51:57 +02:00
services.netbird.enable = true;
2024-10-08 13:58:49 +02:00
# We are going to use CUDA here.
nixpkgs.config.cudaSupport = true;
2024-10-08 15:04:10 +02:00
users.users.root.hashedPassword = "$y$j9T$eNZQgDN.J5y7KTG2hXgat1$J1i5tjx5dnSZu.C9B7swXi5zMFIkUnmRrnmyLHFAt8/";
2024-10-08 12:18:26 +02:00
};
root = ./.;
}