mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
37 lines
540 B
Nix
37 lines
540 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Steam
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
gamescopeSession = {
|
|
enable = true;
|
|
};
|
|
};
|
|
gamemode = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
# Proton GE
|
|
environment = {
|
|
sessionVariables = {
|
|
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
|
|
"/home/alex/.steam/root/compatibilitytools.d";
|
|
};
|
|
};
|
|
|
|
# Programmes requis
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
mangohud
|
|
protonup-ng
|
|
lutris
|
|
heroic
|
|
bottles
|
|
prismlauncher
|
|
];
|
|
};
|
|
}
|