Emacs and inputs updated
- Added org-roam in Emacs - Flake inputs updated - Other little modifications
This commit is contained in:
parent
317e50ef9f
commit
9237779561
3 changed files with 8 additions and 15 deletions
|
@ -1,10 +1,10 @@
|
|||
{ prev, pkgs, ... }:
|
||||
{ prev, ... }:
|
||||
|
||||
prev.runCommandNoCC "wrap-chromium"
|
||||
{ buildInputs = with pkgs; [ makeWrapper ]; }
|
||||
{ buildInputs = with prev.pkgs; [ makeWrapper ]; }
|
||||
''
|
||||
makeWrapper ${c}/bin/chromium $out/bin/chromium \
|
||||
makeWrapper ${prev.pkgs.chromium}/bin/chromium $out/bin/chromium \
|
||||
--add-flags "--enable-features=UseOzonePlatform" \
|
||||
--add-flags "--ozone-platform=wayland"
|
||||
ln -sf ${c}/share $out/share
|
||||
ln -sf ${prev.pkgs.chromium}/share $out/share
|
||||
''
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{ prev, pkgs, ... }:
|
||||
{ prev, ... }:
|
||||
|
||||
prev.runCommandNoCC "codium"
|
||||
{ buildInputs = with pkgs; [ makeWrapper ]; }
|
||||
{ buildInputs = with prev.pkgs; [ makeWrapper ]; }
|
||||
''
|
||||
makeWrapper ${prev.vscodium}/bin/codium $out/bin/codium \
|
||||
makeWrapper ${prev.pkgs.vscodium}/bin/codium $out/bin/codium \
|
||||
--add-flags "--enable-features=UseOzonePlatform" \
|
||||
--add-flags "--ozone-platform=wayland"
|
||||
ln -sf ${prev.vscodium}/share $out/share
|
||||
ln -sf ${prev.pkgs.vscodium}/share $out/share
|
||||
''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue