diff options
| author | Simon Parri <simonparri@ganzeria.com> | 2025-10-26 15:34:09 -0500 |
|---|---|---|
| committer | Simon Parri <simonparri@ganzeria.com> | 2025-10-26 15:34:09 -0500 |
| commit | ab0712c218739f8b499d1506c0a7820f208a1cc7 (patch) | |
| tree | 769286a6b637e1fc08ba6832f2446d565a7b4eb6 | |
| parent | fc21e3ca69646ea1e031d0a677606d27b4323eba (diff) | |
| download | nixos-config-ab0712c218739f8b499d1506c0a7820f208a1cc7.tar.gz nixos-config-ab0712c218739f8b499d1506c0a7820f208a1cc7.zip | |
hosts/*: Install Emacs' pdf-tools properly
| -rw-r--r-- | hosts/thyme/packages.nix | 6 | ||||
| -rw-r--r-- | hosts/tomato/packages.nix | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/hosts/thyme/packages.nix b/hosts/thyme/packages.nix index b9ec896..09e9ba6 100644 --- a/hosts/thyme/packages.nix +++ b/hosts/thyme/packages.nix @@ -26,8 +26,10 @@ }; environment.systemPackages = with pkgs; [ - emacs - emacsPackages.pdf-tools + (emacsPackagesFor emacs + (ep: [ + ep.pdf-tools + ])) jre ruby sbcl diff --git a/hosts/tomato/packages.nix b/hosts/tomato/packages.nix index 89aaddc..57e9202 100644 --- a/hosts/tomato/packages.nix +++ b/hosts/tomato/packages.nix @@ -35,8 +35,10 @@ in }; environment.systemPackages = with pkgs; [ - emacs - emacsPackages.pdf-tools + (emacsPackagesFor emacs + (ep: [ + ep.pdf-tools + ])) jre ruby R |
