added amd

This commit is contained in:
kenji
2025-06-30 15:42:14 -05:00
parent d7489f811a
commit 8f4de3964f
5 changed files with 25 additions and 65 deletions
+6
View File
@@ -0,0 +1,6 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
glxinfo
vulkan-tools
];
}
+5 -1
View File
@@ -3,10 +3,14 @@
inputs,
...
}: {
programs.steam.enable = true;
programs.steam = {
enable = true;
gamescopeSession.enable = true;
};
environment.systemPackages = [
# inputs.nix-gaming.packages.${pkgs.system}.default
pkgs.protonup-qt
pkgs.geekbench
];
# programs.steam.platformOptimizations.enable = true;
}
+6 -1
View File
@@ -1,6 +1,11 @@
{...}: {
{pkgs, ...}: {
hardware.graphics = {
enable = true;
enable32Bit = true; # Crucial for 32-bit games
};
programs.corectrl = {
enable = true;
};
systemd.packages = with pkgs; [corectrl];
systemd.services.corectrl.wantedBy = ["multi-user.target"];
}