22 lines
444 B
Nix
22 lines
444 B
Nix
|
{
|
||
|
machines.atlas = {
|
||
|
kind = "physical";
|
||
|
arch = "x86_64-linux";
|
||
|
isHypervisor = true;
|
||
|
|
||
|
nixosModule.lab = {
|
||
|
storage = {
|
||
|
osDisk = "/dev/sda";
|
||
|
dataPartition = "/dev/nvme0n1p1";
|
||
|
};
|
||
|
|
||
|
ssh = {
|
||
|
useCertificates = true;
|
||
|
hostCert = builtins.readFile ./certificates/atlas/host_ed25519.crt;
|
||
|
userCert = builtins.readFile ./certificates/atlas/user_ed25519.crt;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|