Initial template repo

This commit is contained in:
2026-06-16 20:55:00 +02:00
commit 65a547ad1a
39 changed files with 3628 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{ pkgs, ... }:
{
imports = [
./gaming/wine-proton.nix
];
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;
};
};
environment.systemPackages = with pkgs; [
ftb-app
gamemode
goverlay
heroic
lutris
mangohud
prismlauncher
];
}