infrastructure/machines/krz01/_configuration.nix

32 lines
644 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
# TODO: re-enable me when #139 is merged. "proxmox"
"nvidia-tesla-k80"
"microvm-router01"
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
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 = ./.;
}