Compare commits

..

1 commit

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

View file

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