diff --git a/SwarselSystems.org b/SwarselSystems.org index bfc7194..79836bc 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -8590,7 +8590,7 @@ By using the emacs-overlay NixOS module, I can install all Emacs packages that I Lastly, I am defining some more packages here that the parser has problems finding. Also there are some packages that are not in ELPA or MELPA that I still want to use, like =calfw= and =fast-scroll=, so I build them here. #+begin_src nix :tangle profiles/common/home/emacs.nix - { pkgs, lib, ... }: + { pkgs, lib, config, ... }: let mkIfElse = p: yes: no: lib.mkMerge [ (lib.mkIf p yes) diff --git a/profiles/common/home/emacs.nix b/profiles/common/home/emacs.nix index e0150c0..f18e71b 100644 --- a/profiles/common/home/emacs.nix +++ b/profiles/common/home/emacs.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, ... }: +{ pkgs, lib, config, ... }: let mkIfElse = p: yes: no: lib.mkMerge [ (lib.mkIf p yes)