24 lines
449 B
Cheetah
24 lines
449 B
Cheetah
{ lib, ... }:
|
|
{
|
|
# Generated by nodeiwest host init.
|
|
imports = [
|
|
./disko.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "@@HOST_NAME@@";
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
time.timeZone = "@@TIMEZONE@@";
|
|
|
|
@@BOOT_LOADER_BLOCK@@
|
|
|
|
nodeiwest.ssh.userCAPublicKeys = @@SSH_CA_KEYS@@;
|
|
|
|
nodeiwest.tailscale.openbao = {
|
|
enable = @@TAILSCALE_OPENBAO_ENABLE@@;
|
|
};
|
|
|
|
system.stateVersion = "@@STATE_VERSION@@";
|
|
}
|