From 2e87db113c8c9580ba088fa8ce64a8c26b8666be Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 20 Jul 2024 09:33:08 -0400 Subject: [PATCH] fix warnings --- nixos76/system/configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nixos76/system/configuration.nix b/nixos76/system/configuration.nix index 6b8c5eb..e538088 100644 --- a/nixos76/system/configuration.nix +++ b/nixos76/system/configuration.nix @@ -115,16 +115,16 @@ # Enable the X11 windowing system. services.xserver.enable = true; services.xserver.desktopManager.xfce.enable = true; - services.xserver.displayManager.defaultSession = "xfce"; + services.displayManager.defaultSession = "xfce"; - hardware.opengl.enable = true; + hardware.graphics.enable = true; # hardware.opengl.driSupport = true; # hardware.opengl.driSupport32Bit = true; # hardware.opengl.setLdLibraryPath = true; - hardware.opengl.extraPackages = [ + hardware.graphics.extraPackages = [ pkgs.intel-media-driver ]; - hardware.opengl.extraPackages32 = [ + hardware.graphics.extraPackages32 = [ pkgs.intel-media-driver pkgs.pkgsi686Linux.libva ]; @@ -145,7 +145,7 @@ }; # Enable touchpad support (enabled default in most desktopManager). - services.xserver.libinput.enable = true; + # services.xserver.libinput.enable = true; # Define a user account. Don't forget to set a password with ‘passwd’. users.users.alex = {