1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix emacs module and remove teams due to CVEs

This commit is contained in:
Stefan Ellmauthaler 2023-10-02 16:37:45 +02:00
parent 9acf1277c0
commit 74ca4b3d0f
Failed to extract signature
2 changed files with 2 additions and 2 deletions

View File

@ -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
];
};

View File

@ -10,7 +10,7 @@ with lib; {
services.emacs = {
enable = true;
defaultEditor = true;
package = pkgs.emacsPackage;
package = pkgs.emacs;
};
};
}