Trim up Isaiah/Jeremiah

Remove minio configurations for them
Remove the semi-completed Ceph configuration from them
Trim out the unused SAN VLan tag
This commit is contained in:
Greg Hellings
2024-11-20 22:53:37 -06:00
parent 4a09344657
commit a0b2b0043e
6 changed files with 10 additions and 158 deletions
+10 -22
View File
@@ -12,14 +12,20 @@
{
imports = [
# Include the results of the hardware scan.
./ceph.nix
./hardware-configuration.nix
./minio.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
virtualisation.libvirtd = {
enable = true;
allowedBridges = [ "virbr0" ];
onBoot = "ignore"; # only restart VMs labeled 'autostart'
};
networking = {
hostName = "jeremiah"; # Define your hostname.
@@ -28,12 +34,6 @@
address = " 10.42.1.1";
interface = "enp68s0";
};
vlans = {
san = {
id = 616;
interface = "enp67s0";
};
};
interfaces = {
enp68s0 = {
ipv4.addresses = [
@@ -41,18 +41,6 @@
address = "10.42.1.8";
prefixLength = 16;
}
{
address = "10.42.100.1";
prefixLength = 16;
}
];
};
san = {
ipv4.addresses = [
{
address = "10.201.1.2";
prefixLength = 24;
}
];
};
};