Compare commits

..

1 commit

Author SHA1 Message Date
3aea6bbc41
[fix] nvim: system module brok plugins
Some checks failed
/ check (push) Failing after 20s
/ build (docs) (push) Successful in 4s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Failing after 2s
/ build (nvim) (push) Successful in 13s
The architecture of nixvim doesn't let me use NixOS modules T-T, I need
to use manual imports instead.
2024-06-23 14:20:21 +02:00

View file

@ -1,14 +1,5 @@
{
lib,
pkgs,
config,
helpers,
...
}: let
# Force inputs to be included
nixvim = import ./nixvim.nix {inherit lib pkgs config helpers;};
in {
args: {
imports = [./options.nix];
config.programs.nixvim = nixvim.config;
config.programs.nixvim = (import ./nixvim.nix args).config;
}