Gaming-related NixOS and home-manager configuration: flatpak, hardware, launchers, mangohud, steam Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
699 B
Nix
23 lines
699 B
Nix
{ ... }:
|
|
|
|
{
|
|
flake.modules.nixos.gaming-flatpak = { pkgs, ... }: {
|
|
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/25.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;
|
|
}}";
|
|
}
|
|
];
|
|
};
|
|
}
|