mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
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";
|
|
};
|
|
}
|