diff options
| author | Crazazy | 2022-02-10 20:24:43 +0100 | 
|---|---|---|
| committer | Crazazy | 2022-02-16 15:33:10 +0100 | 
| commit | 04984fd3e5abcf82086e4df329bbde9598580625 (patch) | |
| tree | 9fc2655097e21f0a3addb08ed195077b669ae8f1 /emacs.org | |
| parent | 29aa24aff603f45693863e99f667e7fb85632b8f (diff) | |
add webkitgtk
Diffstat (limited to 'emacs.org')
| -rw-r--r-- | emacs.org | 12 | 
1 files changed, 11 insertions, 1 deletions
@@ -12,11 +12,21 @@ Also, if you just stumbled accross this at random, there is an easy tangle butto  * Before we start lisping    This emacs config's dependencies are mostly managed by [[https://nixos.org][nix]], therefore we have to make a nix file before we    do any emacs configuring by ourselves +  We also add webkitgtk support for (eventual) web browsing support    #+begin_src nix :tangle emacs.nix      let        sources = import ./nix/sources.nix; +      packageOverlay = final: old: { +        emacs = old.emacs.override { +          withXwidgets = true; +        }; +        emacsWithPackages = final.emacs.pkgs.withPackages; +      };      in -    import sources.emacs { configDir = ./emacsconfig; } +    import sources.emacs { +      pkgs = import <nixpkgs> { overlays = [ packageOverlay ]; }; +      configDir = ./emacsconfig; +    }    #+end_src  * Emacs configuring    Now the real configuring begins!  | 
