infrastructure/machines/krz01/_configuration.nix

29 lines
524 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
2024-10-08 13:58:49 +02:00
"proxmox"
2024-10-08 12:18:26 +02:00
];
extraConfig = {
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
users.users.root.hashedPassword = "$y$j9T$KOEV4hLDGyc4q1q8Rj2tE1$7mhZx4bNojsFfXlU2q5B.sRCD.6S1vhu6x2VSGJ79L2";
2024-10-08 12:18:26 +02:00
};
root = ./.;
}