mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
20 lines
231 B
Nix
20 lines
231 B
Nix
{
|
|
tree,
|
|
std,
|
|
...
|
|
}: let
|
|
stdarg = _: {
|
|
_module.args = {
|
|
inherit std;
|
|
};
|
|
};
|
|
in {
|
|
programs.nixvim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
imports = [
|
|
stdarg
|
|
tree.nixvim
|
|
];
|
|
};
|
|
}
|