12 lines
265 B
Nix
12 lines
265 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../../common/global
|
|
../../common/cattle-node.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "zippy";
|
|
services.tailscaleAutoconnect.authkey = "tskey-auth-ktKyQ59f2p11CNTRL-ut8E71dLWPXsVtb92hevNX9RTjmk4owBf";
|
|
}
|