From c8235346fe342df4aebc3f47d4f29040162dbe61 Mon Sep 17 00:00:00 2001 From: Mel Date: Tue, 15 Oct 2024 15:52:11 +0200 Subject: Bring in bismuth configuration Signed-off-by: Mel --- machines/bismuth/default.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 machines/bismuth/default.nix (limited to 'machines/bismuth/default.nix') 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"; +} -- cgit 1.4.1