Add Steam and Vencord configurations: include desktop entries, session variables, and system packages
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user