13 lines
317 B
Nix
13 lines
317 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../../common/global
|
|
../../common/compute-node.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "c1";
|
|
boot.initrd.luks.devices."luksroot".keyFile = "/dev/sda";
|
|
services.tailscaleAutoconnect.authkey = "tskey-auth-kmFvBT3CNTRL-wUbELKSd5yhuuTwTcgJZxhPUTxKgcYKF";
|
|
}
|