forked from extern/nix-config
103c78ead1
Makes it possible to cd into directories with nix flakes and automatically have a development environment set up.
10 lines
153 B
Nix
10 lines
153 B
Nix
{
|
|
programs.neovim.enable = true;
|
|
programs.direnv.enable = true;
|
|
|
|
environment.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
};
|
|
}
|