nix: add initial home.nix changes for nixos

This commit is contained in:
Dave Gallant
2021-01-09 17:21:04 -05:00
parent 66accc159c
commit 89b4c830eb
3 changed files with 31 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
self: super:
rec {
zoom = super.pkgs.zoom-us.overrideAttrs (old: {
postFixup = old.postFixup + ''
wrapProgram $out/bin/zoom-us --unset XDG_SESSION_TYPE
'';});
}