Files
nix-config/hosts/deck/steam-games.nix
mjallen18 151da6583d baseline
2025-02-17 10:07:07 -06:00

35 lines
937 B
Nix

{ pkgs, ... }:
{
# You'll need to get an API key from https://www.steamgriddb.com/profile/preferences/api
steamGridDbApiKey = "ada6729c6cd321a4e3792ddd0b83c1ba";
# List your non-Steam games here
games = [
{
name = "Ryujinx";
path = "${pkgs.ryujinx-greemdev}/bin/ryujinx";
extraLaunchOptions = "";
steamGridDbIds = {
grid = "121085";
hero = "63924";
logo = "29735";
list = "5517";
};
}
{
name = "Prismlauncher";
path = "${pkgs.prismlauncher}/bin/prismlauncher";
extraLaunchOptions = "";
steamGridDbIds = {
grid = "267141";
hero = "64303";
logo = "68299";
list = "23582";
};
}
{
name = "Mario Kart 8";
path = "${pkgs.ryujinx-greemdev}/bin/ryujinx";
extraLaunchOptions = "--fullscreen '/home/deck/Emulation/roms/switch/Mario Kart 8 Deluxe [B+U720896].nsp'";
}
];
}