43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
clonehero
|
|
heroic
|
|
mangohud
|
|
prismlauncher
|
|
steam-run
|
|
];
|
|
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
extraCompatPackages = [ pkgs.proton-ge-bin ];
|
|
};
|
|
gamemode.enable = true;
|
|
};
|
|
|
|
hardware = {
|
|
xpadneo.enable = true;
|
|
steam-hardware.enable = true; # Allow steam client to manage controllers
|
|
graphics.enable32Bit = true; # For OpenGL games
|
|
};
|
|
|
|
services.flatpak.packages = [
|
|
"com.github.k4zmu2a.spacecadetpinball"
|
|
"com.steamgriddb.SGDBoop"
|
|
"io.github.Foldex.AdwSteamGtk"
|
|
"io.itch.itch"
|
|
"io.mrarm.mcpelauncher"
|
|
"net.retrodeck.retrodeck"
|
|
"org.freedesktop.Platform.VulkanLayer.MangoHud/x86_64/24.08"
|
|
rec {
|
|
appId = "com.hypixel.HytaleLauncher";
|
|
sha256 = "01307s44bklc1ldcigcn9n4lm8hf8q793v9fv7w4w04xd5zyh4rv";
|
|
bundle = "${pkgs.fetchurl {
|
|
url = "https://launcher.hytale.com/builds/release/linux/amd64/hytale-launcher-latest.flatpak";
|
|
inherit sha256;
|
|
}}";
|
|
}
|
|
];
|
|
}
|