summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
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