Update: 08/18/2024 06:51:28 PM

This commit is contained in:
2024-08-18 18:52:15 +09:00
parent 15832ba2f3
commit eebaa957af
22 changed files with 240 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
{ config, pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_xanmod_stable;
boot.kernelPackages = pkgs.linuxPackages;
boot.consoleLogLevel = 3;
}

View File

@@ -1,8 +1,8 @@
{ pkgs, ... }:
{
hardware.graphics.enable = true;
hardware.graphics.enable32Bit = true;
hardware.graphics.extraPackages = with pkgs; [
hardware.opengl.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages = with pkgs; [
mesa
];
}