Add Steam and Vencord configurations: include desktop entries, session variables, and system packages

This commit is contained in:
KptltD00M
2026-06-23 20:27:54 +02:00
parent 0205b8fe89
commit 633b2aadd0
6 changed files with 64 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
pkgs,
...
}: {
home.packages = with pkgs; [
steam
protonup-ng
proton-ge-bin
];
xdg.desktopEntries = {
Steam = {
name = "Steam";
exec = "${pkgs.steam}/bin/steam";
icon = "steam";
type = "Application";
categories = [
"Game"
"Network"
];
terminal = false;
};
};
home.sessionVariables = {
STEAM_FORCE_DESKTOPUI_SCALING = "1.25";
};
}