mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
12 lines
312 B
Nix
12 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"
|
|
]
|