nixos-servers/nixos/machines/default.nix

92 lines
2 KiB
Nix
Raw Normal View History

{
jefke = {
2024-01-28 10:48:13 +00:00
type = "physical";
nixosModule = {
lab = {
terraformDatabase.enable = true;
storage = {
osDisk = "/dev/sda";
dataPartition = "/dev/nvme0n1p1";
};
ssh = {
useCertificates = true;
# TODO: automatically set this?
hostCert = builtins.readFile ./jefke_host_ed25519-cert.pub;
userCert = builtins.readFile ./jefke_user_ed25519-cert.pub;
};
};
};
};
2023-11-29 16:21:18 +00:00
atlas = {
2024-01-28 10:48:13 +00:00
type = "physical";
nixosModule.lab = {
storage = {
osDisk = "/dev/sda";
dataPartition = "/dev/nvme0n1p1";
};
ssh = {
useCertificates = true;
hostCert = builtins.readFile ./atlas_host_ed25519-cert.pub;
userCert = builtins.readFile ./atlas_user_ed25519-cert.pub;
2023-11-29 16:21:18 +00:00
};
};
};
lewis = {
2024-01-28 10:48:13 +00:00
type = "physical";
nixosModule.lab = {
dataHost.enable = true;
storage = {
osDisk = "/dev/sda";
dataPartition = "/dev/nvme0n1p1";
};
2024-01-17 20:28:15 +00:00
ssh = {
useCertificates = true;
hostCert = builtins.readFile ./lewis_host_ed25519-cert.pub;
userCert = builtins.readFile ./lewis_user_ed25519-cert.pub;
};
2024-01-28 10:48:13 +00:00
};
};
2024-01-28 10:48:13 +00:00
my-microvm = {
type = "virtual";
hypervisorName = "lewis";
2024-01-17 20:28:15 +00:00
2024-01-28 12:57:36 +00:00
nixosModule = { pkgs, ... }: {
# TODO: would be cool to create a check that a mac address is only ever assigned to one VM.
lab.vm.macAddress = "BA:DB:EE:F0:00:00";
2024-01-28 12:57:36 +00:00
2024-01-28 10:48:13 +00:00
programs.bash.interactiveShellInit = ''
echo "Hello world from inside a virtual machine!!" | ${pkgs.lolcat}/bin/lolcat
2024-01-28 10:48:13 +00:00
'';
};
};
2024-01-29 21:21:15 +00:00
hermes = {
type = "virtual";
hypervisorName = "lewis";
nixosModule = { config, ... }: {
2024-01-29 21:21:15 +00:00
lab = {
networking.dmzServices.enable = true;
vm = {
macAddress = "BA:DB:EE:F0:00:07";
staticNetworking = true;
staticIPv4 = config.lab.networking.dmzServicesIPv4;
staticIPv6 = config.lab.networking.dmzServicesIPv6;
};
2024-01-29 21:21:15 +00:00
};
};
};
}