summary refs log tree commit diff
path: root/machines/bismuth/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/bismuth/default.nix')
-rw-r--r--machines/bismuth/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/machines/bismuth/default.nix b/machines/bismuth/default.nix
new file mode 100644
index 0000000..8dbdd14
--- /dev/null
+++ b/machines/bismuth/default.nix
@@ -0,0 +1,27 @@
+{ ... }:
+
+{
+  imports = [
+    ../../modules/common.nix
+
+    ./hardware.nix
+    ./devices.nix
+
+    ../../modules/jellyfin.nix
+    ../../modules/nvidia.nix
+  ];
+
+  networking.hostName = "Bismuth";
+
+  # expose vm web interface to tailnet
+  services.tailscale.extraUpFlags = [
+    "--advertise-routes=192.168.122.100/32"
+  ];
+
+  # set monitor configuration for gdm
+  systemd.tmpfiles.rules = [
+    "L+ /run/gdm/.config/monitors.xml - - - - ${../../configs/monitors.xml}"
+  ];
+
+  system.stateVersion = "23.11";
+}