13 lines
284 B
Nix
13 lines
284 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../../common/global
|
|
../../common/base-node.nix
|
|
./disk-config.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "chilly";
|
|
services.tailscaleAutoconnect.authkey = "tskey-auth-kRXS9oPyPm11CNTRL-BE6YnbP9J6ZZuV9dHkX17ZMnm1JGdu93";
|
|
}
|