16 lines
377 B
Nix
16 lines
377 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../../common/global
|
|
../../common/cloud-node.nix
|
|
./hardware.nix
|
|
./reverse-proxy.nix
|
|
];
|
|
|
|
boot.initrd.kernelModules = [ "virtio_gpu" ];
|
|
boot.kernelParams = [ "console=tty" ];
|
|
|
|
networking.hostName = "alo-cloud-1";
|
|
services.tailscaleAutoconnect.authkey = "tskey-auth-kbdARC7CNTRL-pNQddmWV9q5C2sRV3WGep5ehjJ1qvcfD";
|
|
}
|