Files
nixy/home/programs/steam/default.nix
T
KptltD00M 5b6e5a537c chore: update gitignore and nix configurations
- Add `result` and `result/` to `.gitignore`
- Remove `proton-ge-bin` from Steam packages
- Update laptop flake configuration with hardware optimizations
- Adjust graphics and locale settings
- Disable `power-profiles-daemon` in utils and laptop configs
2026-06-24 21:12:46 +02:00

28 lines
414 B
Nix

{
pkgs,
...
}: {
home.packages = with pkgs; [
steam
protonup-ng
];
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";
};
}