From 74ca4b3d0ffd628ddb59eecc09bbc58a6b502095 Mon Sep 17 00:00:00 2001 From: Stefan Ellmauthaler Date: Mon, 2 Oct 2023 16:37:45 +0200 Subject: [PATCH] Fix emacs module and remove teams due to CVEs --- modules/communication.nix | 2 +- modules/emacs.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/communication.nix b/modules/communication.nix index e4888b1..cd6b5fe 100644 --- a/modules/communication.nix +++ b/modules/communication.nix @@ -18,7 +18,7 @@ with lib; { signal-desktop skypeforlinux #remove teams as MS has removed the linux packages from their servers - teams + #teams zoom-us ]; }; diff --git a/modules/emacs.nix b/modules/emacs.nix index e0e6ca1..7ad2546 100644 --- a/modules/emacs.nix +++ b/modules/emacs.nix @@ -10,7 +10,7 @@ with lib; { services.emacs = { enable = true; defaultEditor = true; - package = pkgs.emacsPackage; + package = pkgs.emacs; }; }; }