diff options
author | David Morgan <djm_uk@protonmail.com> | 2023-08-15 15:58:17 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2023-08-15 15:58:17 +0100 |
commit | 258eb955c7e91fb364448f6ca452020f6cb67556 (patch) | |
tree | eb372c7599c5c5c2071738901792ea1f3b044dbc /nix-conf/home/includes | |
parent | 010f149c8e55086ddf47600dd7e76fb6c217b0e3 (diff) | |
download | dotfiles-258eb955c7e91fb364448f6ca452020f6cb67556.tar.gz |
Install multi-vterm with home-manager
Diffstat (limited to 'nix-conf/home/includes')
-rw-r--r-- | nix-conf/home/includes/darwin.nix | 2 | ||||
-rw-r--r-- | nix-conf/home/includes/linux-dev.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nix-conf/home/includes/darwin.nix b/nix-conf/home/includes/darwin.nix index 134620c..2c78638 100644 --- a/nix-conf/home/includes/darwin.nix +++ b/nix-conf/home/includes/darwin.nix @@ -32,7 +32,7 @@ in coreutils curl diffutils - ((emacsPackagesFor emacsMacport).emacsWithPackages(ps: [ ps.vterm ])) + ((emacsPackagesFor emacs29-macport).emacsWithPackages(ps: [ ps.vterm ps.multi-vterm ])) findutils gh gh-dash diff --git a/nix-conf/home/includes/linux-dev.nix b/nix-conf/home/includes/linux-dev.nix index decf80a..fd174f2 100644 --- a/nix-conf/home/includes/linux-dev.nix +++ b/nix-conf/home/includes/linux-dev.nix @@ -7,7 +7,7 @@ programs.emacs = { enable = true; package = pkgs.emacs28NativeComp; - extraPackages = (epkgs: [ epkgs.vterm ] ); + extraPackages = (epkgs: [ epkgs.vterm epkgs.multi-vterm ] ); }; home.packages = with pkgs; [ |