summary refs log tree commit diff
path: root/machines/zibeline/default.nix
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-07-27 19:26:04 +0200
committerMel <mel@rnrd.eu>2025-07-27 19:26:04 +0200
commit519d8ec24f9447c7a922353dde07f7abe2895d75 (patch)
treead06cec72d7a2f5465e8b24871ceec2cae7e4f9b /machines/zibeline/default.nix
parent938ea58fbd61d241abaf6d59013a9aa255ef83f1 (diff)
downloadnetwork-519d8ec24f9447c7a922353dde07f7abe2895d75.tar.zst
network-519d8ec24f9447c7a922353dde07f7abe2895d75.zip
Add new zibeline machine configuration
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines/zibeline/default.nix')
-rw-r--r--machines/zibeline/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/machines/zibeline/default.nix b/machines/zibeline/default.nix
new file mode 100644
index 0000000..c35154c
--- /dev/null
+++ b/machines/zibeline/default.nix
@@ -0,0 +1,28 @@
+{ me, machines, ... }:
+
+{
+  imports = [
+    ../../modules/common.nix
+
+    ./hardware.nix
+    ./devices.nix
+  ];
+
+  foundation = {
+    www = {
+      enable = true;
+
+      public = true;
+      tailnet = false;
+    };
+
+    monitoring = {
+      services = [
+        "base"
+        "tailnet"
+      ];
+    };
+  };
+
+  system.stateVersion = "25.05";
+}