12 lines
251 B
Nix
12 lines
251 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../common/global
|
|
../common/compute-node.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "c2";
|
|
services.tailscaleAutoconnect.authkey = "tskey-auth-kbYnZK2CNTRL-SpUVCuzS6P3ApJiDaB6RM3M4b8M9TXgS";
|
|
}
|