retire toaster and remove dead code

This commit is contained in:
Grigory Shipunov 2023-08-05 20:48:58 +02:00
parent 8b8d90cec4
commit 9e5d5bd874
30 changed files with 0 additions and 1468 deletions

View file

@ -1,29 +0,0 @@
{ pkgs, inputs, lib, ... }:
{
environment.systemPackages = with pkgs; [
direnv
];
nixpkgs.overlays = [
inputs.emacs-overlay.overlay
];
services.emacs = {
install = true;
enable = false;
package = with pkgs; ((emacsPackagesFor (emacs-pgtk.overrideAttrs (old: {
passthru = old.passthru // {
treeSitter = true;
};
}))).emacsWithPackages (epkgs: with epkgs; [
# treesitter bits
treesit-grammars.with-all-grammars
vterm
pdf-tools
]));
defaultEditor = lib.mkDefault true;
};
}