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