summary refs log tree commit diff
path: root/machines/taupe/default.nix
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-07-15 03:27:19 +0200
committerMel <mel@rnrd.eu>2025-07-15 03:30:56 +0200
commit9fd6ea4a21a9112425d4f8d46178404d7b33f386 (patch)
tree91d951398c53f8f02cda31f00471c74ae8afaf02 /machines/taupe/default.nix
parent1bc37f9dc418b0394ea9498ceb361ba545230fd0 (diff)
downloadnetwork-9fd6ea4a21a9112425d4f8d46178404d7b33f386.tar.zst
network-9fd6ea4a21a9112425d4f8d46178404d7b33f386.zip
Add 'taupe' server serving as exit node
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines/taupe/default.nix')
-rw-r--r--machines/taupe/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/machines/taupe/default.nix b/machines/taupe/default.nix
new file mode 100644
index 0000000..e4dce7d
--- /dev/null
+++ b/machines/taupe/default.nix
@@ -0,0 +1,28 @@
+{ ... }:
+
+{
+  imports = [
+    ../../modules/common.nix
+
+    ./hardware.nix
+    ./devices.nix
+  ];
+
+  foundation = {
+    www = {
+      enable = true;
+
+      public = true;
+      tailnet = true;
+    };
+
+    monitoring = {
+      client.enable = true;
+      services = [
+        "base"
+      ];
+    };
+  };
+
+  system.stateVersion = "25.05";
+}