[fix] nvim: system module broke plugins
The architecture of nixvim doesn't let me use NixOS modules T-T, I need to use manual imports instead.
This commit is contained in:
parent
ac5e62a37c
commit
ac30838621
6 changed files with 480 additions and 489 deletions
|
@ -1,5 +1,14 @@
|
|||
{pkgs, ...} @ opts: {
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
helpers,
|
||||
...
|
||||
}: let
|
||||
# Force inputs to be included
|
||||
nixvim = import ./nixvim.nix {inherit lib pkgs config helpers;};
|
||||
in {
|
||||
imports = [./options.nix];
|
||||
|
||||
config.programs.nixvim = (import ./nixvim.nix opts).config;
|
||||
config.programs.nixvim = nixvim.config;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue