5b6e5a537c
- 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
28 lines
414 B
Nix
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";
|
|
};
|
|
}
|