From efe47bacb17c5bb65eb08055bab153f2558ca7ac Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 2 Oct 2022 16:51:23 +0200 Subject: [PATCH] hosts/hydra-1: add new host --- flake.nix | 2 ++ hosts/hydra-1/configuration.nix | 25 ++++++++++++++++++ hosts/hydra-1/hardware-configuration.nix | 33 ++++++++++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 hosts/hydra-1/configuration.nix create mode 100644 hosts/hydra-1/hardware-configuration.nix diff --git a/flake.nix b/flake.nix index 595ceaf..9b29c0f 100644 --- a/flake.nix +++ b/flake.nix @@ -36,6 +36,8 @@ gatekeeper = { ... }: {}; + hydra-1 = { ... }: {}; + minecraft-2 = { ... }: {}; monitoring-3 = { ... }: {}; diff --git a/hosts/hydra-1/configuration.nix b/hosts/hydra-1/configuration.nix new file mode 100644 index 0000000..3482633 --- /dev/null +++ b/hosts/hydra-1/configuration.nix @@ -0,0 +1,25 @@ +{ 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"; + + networking.hostName = "hydra-1"; + + networking.useDHCP = false; + networking.interfaces.ens18.ipv6.addresses = [ { address = "2001:638:904:ffcb::a"; prefixLength = 64; } ]; + networking.interfaces.ens19.ipv4.addresses = [ { address = "192.168.10.36"; prefixLength = 24; } ]; + networking.defaultGateway6 = { address = "2001:638:904:ffcb::1"; interface = "ens18"; }; + networking.defaultGateway = { address = "192.168.10.1"; interface = "ens19"; }; + networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ]; + + system.stateVersion = "22.11"; +} diff --git a/hosts/hydra-1/hardware-configuration.nix b/hosts/hydra-1/hardware-configuration.nix new file mode 100644 index 0000000..3dc9bef --- /dev/null +++ b/hosts/hydra-1/hardware-configuration.nix @@ -0,0 +1,33 @@ +# 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/05ec1a84-7889-4551-bbb9-388b90039839"; + fsType = "ext4"; + }; + + swapDevices = [ ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.ens18.useDHCP = lib.mkDefault true; + # networking.interfaces.ens19.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}