From a969a12006fabb3827b374c6c080e7cd64cd1107 Mon Sep 17 00:00:00 2001 From: blake Date: Mon, 6 Oct 2025 22:01:37 -0500 Subject: [PATCH] 11 current 2025-10-06 21:55:19 25.05.20251001.5b5be50 6.12.49 * --- flake.nix | 2 +- modules/system/nvidia.nix | 6 +++--- modules/system/tailscale.nix | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index f22687a..9d6d90f 100755 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 9 current 2025-10-06 21:50:23 25.05.20251001.5b5be50 6.12.49 * +# generation: 11 current 2025-10-06 21:55:19 25.05.20251001.5b5be50 6.12.49 * { description = "blakes nix config"; inputs = { diff --git a/modules/system/nvidia.nix b/modules/system/nvidia.nix index 9f56094..8cecd2b 100644 --- a/modules/system/nvidia.nix +++ b/modules/system/nvidia.nix @@ -12,10 +12,10 @@ in services.xserver.videoDrivers = [ "nvidia" ]; - hardware.opengl = { + hardware.graphics = { enable = true; - driSupport32Bit = true; - }; + enable32Bit = true; + }; # enable nvidia proprietary driver hardware.nvidia = { diff --git a/modules/system/tailscale.nix b/modules/system/tailscale.nix index 7517788..b576664 100755 --- a/modules/system/tailscale.nix +++ b/modules/system/tailscale.nix @@ -12,7 +12,7 @@ in config = lib.mkIf cfg.enable { services.tailscale = { enable = true; - useRoutingFeatures = "server"; + useRoutingFeatures = "both"; authKeyFile = authkey_file; }; };