configuration.nix/nvim/default.nix
Jalil David Salamé Messina ac30838621
All checks were successful
/ check (push) Successful in 24s
/ build (docs) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 13s
[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.
2024-06-23 14:30:23 +02:00

14 lines
229 B
Nix

{
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 = nixvim.config;
}