huge update

This commit is contained in:
2024-09-04 09:14:29 -04:00
parent d468f20e0a
commit bfcf03de3b
19 changed files with 486 additions and 123 deletions

View File

@@ -0,0 +1,16 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [
emacs
fzf
ripgrep
emacs-lsp-booster
(nerdfonts.override { fonts = [ "Iosevka" ]; })
];
home.file.".emacs.d" = {
source = ./emacs.d;
recursive = true;
};
}