meta: Merge neovim module with starship

This is a part of making a separate "shell" module that can be used to
provide a standard base of tools when working in headless environments.
This commit is contained in:
Donovan Glover 2024-04-03 21:36:23 -04:00
parent a18a120634
commit e44b145164
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 10 additions and 9 deletions

View File

@ -1,9 +0,0 @@
{
programs.neovim.enable = true;
programs.direnv.enable = true;
environment.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
}

View File

@ -1,4 +1,14 @@
{
programs = {
neovim.enable = true;
direnv.enable = true;
};
environment.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
programs.starship = {
enable = true;