set hostName and domain in nixos config directly
This commit is contained in:
parent
371b851ca5
commit
bd5dc4b883
5 changed files with 55 additions and 45 deletions
|
@ -1,35 +1,44 @@
|
|||
{
|
||||
jefke = {
|
||||
# TODO: directly set and read this from nixos config.
|
||||
hostName = "jefke";
|
||||
domain = "hyp";
|
||||
# TODO: model this in a nixos module?
|
||||
type = "physical";
|
||||
|
||||
nixosModule.lab = {
|
||||
terraformDatabase.enable = true;
|
||||
|
||||
storage = {
|
||||
osDisk = "/dev/sda";
|
||||
dataPartition = "/dev/nvme0n1p1";
|
||||
nixosModule = {
|
||||
networking = {
|
||||
hostName = "jefke";
|
||||
# TODO: generate this using type?
|
||||
domain = "hyp";
|
||||
};
|
||||
|
||||
ssh = {
|
||||
useCertificates = true;
|
||||
# TODO: automatically set this?
|
||||
hostCert = builtins.readFile ./jefke_host_ed25519-cert.pub;
|
||||
userCert = builtins.readFile ./jefke_user_ed25519-cert.pub;
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
atlas = {
|
||||
hostName = "atlas";
|
||||
domain = "hyp";
|
||||
type = "physical";
|
||||
|
||||
nixosModule = { config, ... }:
|
||||
let inherit (config.lab.networking) dmzServicesIPv4 dmzServicesIPv6; in
|
||||
{
|
||||
networking = {
|
||||
hostName = "atlas";
|
||||
domain = "hyp";
|
||||
};
|
||||
|
||||
lab = {
|
||||
networking = {
|
||||
# TODO: Ideally, we don't have to set this here.
|
||||
|
@ -53,11 +62,14 @@
|
|||
};
|
||||
|
||||
lewis = {
|
||||
hostName = "lewis";
|
||||
domain = "hyp";
|
||||
type = "physical";
|
||||
|
||||
nixosModule = { pkgs, ... }: {
|
||||
networking = {
|
||||
hostName = "lewis";
|
||||
domain = "hyp";
|
||||
};
|
||||
|
||||
lab = {
|
||||
dataHost.enable = true;
|
||||
|
||||
|
@ -76,8 +88,6 @@
|
|||
};
|
||||
|
||||
my-microvm = {
|
||||
hostName = "my-microvm";
|
||||
domain = "dmz";
|
||||
type = "virtual";
|
||||
hypervisorName = "lewis";
|
||||
|
||||
|
@ -86,6 +96,11 @@
|
|||
echo "Hello world from inside a virtual machine!!" | ${pkgs.lolcat}/bin/lolcat
|
||||
'';
|
||||
|
||||
networking = {
|
||||
hostName = "my-microvm";
|
||||
domain = "dmz";
|
||||
};
|
||||
|
||||
lab.vmMacAddress = "BA:DB:EE:F0:00:00";
|
||||
};
|
||||
};
|
||||
|
|
Reference in a new issue