Files
nixy/home/programs/steam/default.nix
T

29 lines
432 B
Nix

{
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";
};
}