19 lines
525 B
Nix
19 lines
525 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../../common/global
|
|
../../common/compute-node.nix
|
|
../../common/encrypted-btrfs-layout.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
diskLayout = {
|
|
mainDiskDevice = "/dev/disk/by-id/nvme-SAMSUNG_MZVLW256HEHP-000H1_S340NX0K910298";
|
|
#keyDiskDevice = "/dev/disk/by-id/usb-Intenso_Micro_Line_22080777640496-0:0";
|
|
keyDiskDevice = "/dev/sdb";
|
|
};
|
|
|
|
networking.hostName = "c1";
|
|
services.tailscaleAutoconnect.authkey = "tskey-auth-kmFvBT3CNTRL-wUbELKSd5yhuuTwTcgJZxhPUTxKgcYKF";
|
|
}
|