refactor: move full neovim config to only myuser

This commit is contained in:
oddlama 2023-09-04 16:43:57 +02:00
parent 4c377b260e
commit 14329a9a5d
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
22 changed files with 23 additions and 40 deletions

View file

@ -0,0 +1,15 @@
{pkgs, ...}: {
programs.neovim = {
withPython3 = true;
extraPython3Packages = pyPkgs: with pyPkgs; [openai];
withNodeJs = true;
};
xdg.configFile = {
"nvim/lua".source = ./lua;
"nvim/init.lua".source = ./init.lua;
};
# TODO NO! NO! all of this goes away
home.packages = with pkgs; [gcc shellcheck stylua];
}