Emacs and inputs updated

- Added org-roam in Emacs
- Flake inputs updated
- Other little modifications
This commit is contained in:
Andrea Ciceri 2021-10-14 01:22:57 +02:00
parent 317e50ef9f
commit 9237779561
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
3 changed files with 8 additions and 15 deletions

View file

@ -1,10 +1,10 @@
{ prev, pkgs, ... }: { prev, ... }:
prev.runCommandNoCC "wrap-chromium" 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 "--enable-features=UseOzonePlatform" \
--add-flags "--ozone-platform=wayland" --add-flags "--ozone-platform=wayland"
ln -sf ${c}/share $out/share ln -sf ${prev.pkgs.chromium}/share $out/share
'' ''

View file

@ -1,10 +1,10 @@
{ prev, pkgs, ... }: { prev, ... }:
prev.runCommandNoCC "codium" 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 "--enable-features=UseOzonePlatform" \
--add-flags "--ozone-platform=wayland" --add-flags "--ozone-platform=wayland"
ln -sf ${prev.vscodium}/share $out/share ln -sf ${prev.pkgs.vscodium}/share $out/share
'' ''

View file

@ -12,18 +12,12 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
<<<<<<< HEAD
=======
python-language-server python-language-server
python python
>>>>>>> 651ab71 (Emacs and inputs updated)
fd fd
ag ag
nixpkgs-fmt nixpkgs-fmt
rnix-lsp rnix-lsp
<<<<<<< HEAD
] ++ (if config.network.hostname != "mbp" then python-language-server else [ ]);
=======
( (
makeDesktopItem { makeDesktopItem {
name = "org-protocol"; name = "org-protocol";
@ -36,5 +30,4 @@
} }
) )
]; ];
>>>>>>> 651ab71 (Emacs and inputs updated)
} }