From 7faff156aeba59a1ae65b24ebd191ea6e86f86fc Mon Sep 17 00:00:00 2001 From: Tyler Starr Date: Sat, 20 Jul 2024 23:40:49 -0700 Subject: [PATCH] fixes for flake update on Torus --- provision/hosts/torus/configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/provision/hosts/torus/configuration.nix b/provision/hosts/torus/configuration.nix index a7dfec23..63c008bd 100644 --- a/provision/hosts/torus/configuration.nix +++ b/provision/hosts/torus/configuration.nix @@ -34,6 +34,10 @@ # Set kernel modules boot.kernelModules = [ "sg" ]; + # Hardware options + hardware.graphics.enable = true; + hardware.graphics.enable32Bit = true; + # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -59,10 +63,6 @@ virtualisation.docker.enableNvidia = true; services.xserver.videoDrivers = [ "nvidia" ]; - hardware.opengl = { - enable = true; - setLdLibraryPath = true; - }; # Define user account. users.users.${user} = {