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