mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
13 lines
312 B
Nix
13 lines
312 B
Nix
|
{ call }:
|
||
|
let
|
||
|
neovim = call ./neovim.nix { };
|
||
|
vim = call ./vim.nix { };
|
||
|
in
|
||
|
# TODO: be a bit more deliberate
|
||
|
# NOTE: remove the overridable stuff from `call`;
|
||
|
# I don't want to think about how (a // b) interacts with them yet
|
||
|
builtins.removeAttrs (neovim // vim) [
|
||
|
"override"
|
||
|
"overrideDerivation"
|
||
|
]
|