mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 00:58:16 +00:00
9 lines
180 B
Nix
9 lines
180 B
Nix
self: super:
|
|
rec {
|
|
|
|
zoom = super.pkgs.zoom-us.overrideAttrs (old: {
|
|
postFixup = old.postFixup + ''
|
|
wrapProgram $out/bin/zoom-us --unset XDG_SESSION_TYPE
|
|
'';});
|
|
}
|