Initial import

This commit is contained in:
2026-06-10 18:36:32 +02:00
commit 41ff233f31
11 changed files with 321 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{ pkgs, ... }:
{
programs = {
appimage = {
enable = true;
binfmt = true;
};
gamemode.enable = true;
gamescope.enable = true;
steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
gamescopeSession.enable = true;
protontricks.enable = true;
};
};
environment.systemPackages = with pkgs; [
gamemode
goverlay
heroic
lact
lutris
mangohud
protontricks
steam-run
wineWowPackages.stable
winetricks
];
}