11 current 2025-10-06 21:55:19 25.05.20251001.5b5be50 6.12.49 *

This commit is contained in:
2025-10-06 22:01:37 -05:00
parent 3d3fb547ad
commit a969a12006
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
# flake for blakes nixos config # flake for blakes nixos config
# define new devices in outputs # 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"; description = "blakes nix config";
inputs = { inputs = {

View File

@@ -12,10 +12,10 @@ in
services.xserver.videoDrivers = [ "nvidia" ]; services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl = { hardware.graphics = {
enable = true; enable = true;
driSupport32Bit = true; enable32Bit = true;
}; };
# enable nvidia proprietary driver # enable nvidia proprietary driver
hardware.nvidia = { hardware.nvidia = {

View File

@@ -12,7 +12,7 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.tailscale = { services.tailscale = {
enable = true; enable = true;
useRoutingFeatures = "server"; useRoutingFeatures = "both";
authKeyFile = authkey_file; authKeyFile = authkey_file;
}; };
}; };