nixos-config

NixOS configs for my systems
Log | Files | Refs

commit 62285c54c21e4390e22be4763dd4171f7185064b
parent 1f89749b299382f48e61d9777868d0f114374c23
Author: vin <vin@vineetk.net>
Date:   Sat, 18 Oct 2025 20:05:59 -0400

demiurge: some alvr stuff

Diffstat:
Mhosts/demiurge/default.nix | 19++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/hosts/demiurge/default.nix b/hosts/demiurge/default.nix @@ -43,6 +43,7 @@ buildInputs = old.buildInputs ++ [ super.android-tools super.usbutils + super.zenity ]; nativeBuildInputs = old.nativeBuildInputs ++ [ super.makeWrapper ]; postInstall = (old.postInstall or "") + '' @@ -50,6 +51,7 @@ super.lib.makeBinPath [ super.android-tools super.usbutils + super.zenity ] }" ''; @@ -65,10 +67,15 @@ }; # boot options - boot.zfs.extraPools = [ - "data_nvme" - "data_wd" - ]; + boot = { + # force monitor to always be connected + kernelParams = [ "video=DP-4:3440x1440@100e" ]; + + zfs.extraPools = [ + "data_nvme" + "data_wd" + ]; + }; # disable wifi and open some ports networking = { @@ -82,8 +89,10 @@ 22 80 443 + 9943 + 9944 ]; - allowedUDPPorts = [ 51413 ]; + allowedUDPPorts = [ 9943 9944 51413 ]; }; interfaces.eth0 = {