diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-02-22 22:23:58 -0800 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-02-22 22:23:58 -0800 |
| commit | 45bb58723ea7644eb875ee3837c8b9752a973b20 (patch) | |
| tree | 542962b9db44a469bcc343fb6035cbac5112eb0b | |
| parent | 392f18f42fca61fee76274ab9779560c91ba3a4f (diff) | |
| download | nix-45bb58723ea7644eb875ee3837c8b9752a973b20.tar nix-45bb58723ea7644eb875ee3837c8b9752a973b20.tar.gz nix-45bb58723ea7644eb875ee3837c8b9752a973b20.tar.bz2 nix-45bb58723ea7644eb875ee3837c8b9752a973b20.tar.lz nix-45bb58723ea7644eb875ee3837c8b9752a973b20.tar.xz nix-45bb58723ea7644eb875ee3837c8b9752a973b20.tar.zst nix-45bb58723ea7644eb875ee3837c8b9752a973b20.zip | |
Fix broken Steam timezone display per https://github.com/NixOS/nixpkgs/issues/338266
| -rw-r--r-- | hosts/common/optional/games.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hosts/common/optional/games.nix b/hosts/common/optional/games.nix index 8158c34..6dc1627 100644 --- a/hosts/common/optional/games.nix +++ b/hosts/common/optional/games.nix @@ -13,5 +13,8 @@ enable = true; extraCompatPackages = [ pkgs.proton-ge-bin ]; #package = pkgs.master.steam; + package = pkgs.steam.override { + extraBwrapArgs = [ "--unsetenv TZ" ]; + }; }; } |
