From 3d588080bc05ae70eeac80615bc025f839d4246a Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 2 Jan 2022 21:22:05 +0100 Subject: [PATCH] Add storage-2 --- hosts/storage-2/configuration.nix | 33 ++++++++++++++++++++++ hosts/storage-2/hardware-configuration.nix | 24 ++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 hosts/storage-2/configuration.nix create mode 100644 hosts/storage-2/hardware-configuration.nix diff --git a/hosts/storage-2/configuration.nix b/hosts/storage-2/configuration.nix new file mode 100644 index 0000000..164df34 --- /dev/null +++ b/hosts/storage-2/configuration.nix @@ -0,0 +1,33 @@ +{ config, pkgs, ... }: + +{ + imports = + [ + ./hardware-configuration.nix + ../../configuration/common + ../../configuration/proxmox-vm + ]; + + boot.loader.grub.enable = true; + boot.loader.grub.version = 2; + boot.loader.grub.device = "/dev/vda"; + + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + + networking.hostName = "storage-2"; + + networking.useDHCP = false; + networking.interfaces.ens19.ipv4.addresses = [ { address = "192.168.10.35"; prefixLength = 24; } ]; + networking.interfaces.ens18.ipv6.addresses = [ { address = "2001:638:904:ffc0::4"; prefixLength = 64; } ]; + networking.defaultGateway = { address = "192.168.10.1"; interface = "ens19"; }; + networking.defaultGateway6 = { address = "2001:638:904:ffc0::1"; interface = "ens18"; }; + networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ]; + + clerie.monitoring = { + enable = true; + id = "209"; + pubkey = "j48FqhMyPo7PG1uxQip2aCM9l91UNtACAIv7PanMFk8="; + }; + + system.stateVersion = "22.05"; +} diff --git a/hosts/storage-2/hardware-configuration.nix b/hosts/storage-2/hardware-configuration.nix new file mode 100644 index 0000000..4f96150 --- /dev/null +++ b/hosts/storage-2/hardware-configuration.nix @@ -0,0 +1,24 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/profiles/qemu-guest.nix") + ]; + + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/cbd8073a-1326-4410-99da-bc1708e932f0"; + fsType = "ext4"; + }; + + swapDevices = [ ]; + + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}