31 lines
604 B
Nix
31 lines
604 B
Nix
{ lib, ... }:
|
|
{
|
|
# Generated by nodeiwest host init.
|
|
imports = [
|
|
./disko.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "lab";
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
time.timeZone = "UTC";
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
device = "nodev";
|
|
};
|
|
|
|
nodeiwest.ssh.userCAPublicKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE6c2oMkM7lLg9qWHVgbrFaFBDrrFyynFlPviiydQdFi openbao-user-ca"
|
|
];
|
|
|
|
nodeiwest.tailscale.openbao = {
|
|
enable = true;
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|