nixfiles/home/profiles/nixvim/nixvim.nix

23 lines
310 B
Nix

{
tree,
std,
...
}: let
stdarg = _: {
_module.args = {
inherit std;
};
};
in {
xdg.mimeApps.defaultApplications = {
"text/plain" = "nvim.desktop";
};
programs.nixvim = {
enable = true;
defaultEditor = true;
imports = [
stdarg
tree.nixvim
];
};
}