diff options
| author | Mel <einebeere@gmail.com> | 2024-10-15 15:52:11 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-10-15 15:52:11 +0200 |
| commit | c8235346fe342df4aebc3f47d4f29040162dbe61 (patch) | |
| tree | 4ca20dccf9db66203b1c9a8b1593b8d964a2fa16 /machines/bismuth/default.nix | |
| parent | 42d7140ae47ec30b84150d9b721682b30c74a1a7 (diff) | |
| download | minerals-c8235346fe342df4aebc3f47d4f29040162dbe61.tar.zst minerals-c8235346fe342df4aebc3f47d4f29040162dbe61.zip | |
Bring in bismuth configuration
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'machines/bismuth/default.nix')
| -rw-r--r-- | machines/bismuth/default.nix | 27 |
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"; +} |
