Initial commit

This commit is contained in:
Ghostfox
2026-03-30 00:20:36 +02:00
commit 63b75b2e8f
56 changed files with 2581 additions and 0 deletions

24
modules/gaming/steam.nix Normal file
View File

@@ -0,0 +1,24 @@
{ pkgs, ... }:
{
programs = {
gamemode = {
enable = true;
enableRenice = true;
};
gamescope = {
enable = true;
capSysNice = true;
};
steam = {
enable = true;
extest.enable = true;
protontricks.enable = true;
};
};
environment.systemPackages = with pkgs; [
mangojuice
mangohud
];
}