changes to modules + adoption of PC

This commit is contained in:
2026-06-24 21:59:08 -05:00
parent 872d29c688
commit 03c2d57c67
46 changed files with 970 additions and 217 deletions
+29
View File
@@ -0,0 +1,29 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
steam
prismlauncher
nvtopPackages.amd
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
programs.gamemode.enable = true;
# GPU Driver
hardware.graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
mesa
vulkan-loader
vulkan-validation-layers
];
};
services.xserver.videoDrivers = [ "amdgpu" ];
}