From ddb41ac8cd018d6a6ea9c9a5f03f189d2183fb89 Mon Sep 17 00:00:00 2001
From: clerie <git@clerie.de>
Date: Sat, 2 Jan 2021 16:48:53 +0100
Subject: [PATCH] Add host web-2

---
 hosts/web-2/configuration.nix          | 34 ++++++++++++++++++++++++++
 hosts/web-2/hardware-configuration.nix | 23 +++++++++++++++++
 2 files changed, 57 insertions(+)
 create mode 100644 hosts/web-2/configuration.nix
 create mode 100644 hosts/web-2/hardware-configuration.nix

diff --git a/hosts/web-2/configuration.nix b/hosts/web-2/configuration.nix
new file mode 100644
index 0000000..f689390
--- /dev/null
+++ b/hosts/web-2/configuration.nix
@@ -0,0 +1,34 @@
+{ config, pkgs, ... }:
+
+{
+  imports =
+    [
+      ./hardware-configuration.nix
+      ../../configuration/common
+    ];
+
+  boot.loader.grub.enable = true;
+  boot.loader.grub.version = 2;
+  boot.loader.grub.device = "/dev/vda";
+
+  networking.hostName = "web-2";
+
+  networking.useDHCP = false;
+  # Network
+  networking.interfaces.ens3.ipv4.addresses = [ { address = "88.99.187.135"; prefixLength = 32; } ];
+  networking.interfaces.ens3.ipv6.addresses = [ { address = "2a01:4f8:c0c:c580::1"; prefixLength = 64; } ];
+  networking.defaultGateway = { address = "172.31.1.1"; interface = "ens3"; };
+  networking.defaultGateway6 = { address = "fe80::1"; interface = "ens3"; };
+  networking.nameservers = [ "213.133.98.98" "213.133.99.99" "213.133.100.100" ];
+
+  services.nginx = {
+    enable = true;
+    enableReload = true;
+    recommendedGzipSettings = true;
+    recommendedOptimisation = true;
+    recommendedProxySettings = true;
+    recommendedTlsSettings = true;
+  };
+
+  system.stateVersion = "21.03";
+}
diff --git a/hosts/web-2/hardware-configuration.nix b/hosts/web-2/hardware-configuration.nix
new file mode 100644
index 0000000..a33a0f3
--- /dev/null
+++ b/hosts/web-2/hardware-configuration.nix
@@ -0,0 +1,23 @@
+# 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" "virtio_pci" "xhci_pci" "sd_mod" "sr_mod" ];
+  boot.initrd.kernelModules = [ ];
+  boot.kernelModules = [ ];
+  boot.extraModulePackages = [ ];
+
+  fileSystems."/" =
+    { device = "/dev/disk/by-uuid/8df3979c-e296-4f4f-aa87-9575b1e77344";
+      fsType = "ext4";
+    };
+
+  swapDevices = [ ];
+
+}