Move to multi-file nix config

This commit is contained in:
agryphus 2023-12-05 21:59:51 -05:00
parent 40ae8fa74b
commit f10c0a019b
8 changed files with 303 additions and 122 deletions

View file

@ -0,0 +1,21 @@
{ config, lib, pkgs, modulesPath, ... }:
{
services.emacs.enable = true;
environment.systemPackages = with pkgs; [
emacs29-gtk3
# Misc
ispell # Spellchecker
fd # Find entries in filesystem. Helps doom emacs run faster.
# For vterm
cmake
libtool
## LSPs
nodePackages.pyright
];
}