nixfleet/pkgs/vscodium/default.nix
aciceri 9237779561
Emacs and inputs updated
- Added org-roam in Emacs
- Flake inputs updated
- Other little modifications
2021-10-14 01:35:02 +02:00

10 lines
325 B
Nix

{ prev, ... }:
prev.runCommandNoCC "codium"
{ buildInputs = with prev.pkgs; [ makeWrapper ]; }
''
makeWrapper ${prev.pkgs.vscodium}/bin/codium $out/bin/codium \
--add-flags "--enable-features=UseOzonePlatform" \
--add-flags "--ozone-platform=wayland"
ln -sf ${prev.pkgs.vscodium}/share $out/share
''