summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-10-26 15:34:09 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-10-26 15:34:09 -0500
commitab0712c218739f8b499d1506c0a7820f208a1cc7 (patch)
tree769286a6b637e1fc08ba6832f2446d565a7b4eb6 /hosts
parentfc21e3ca69646ea1e031d0a677606d27b4323eba (diff)
downloadnixos-config-ab0712c218739f8b499d1506c0a7820f208a1cc7.tar.gz
nixos-config-ab0712c218739f8b499d1506c0a7820f208a1cc7.zip
hosts/*: Install Emacs' pdf-tools properly
Diffstat (limited to 'hosts')
-rw-r--r--hosts/thyme/packages.nix6
-rw-r--r--hosts/tomato/packages.nix6
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