configuration.nix/nvim/default.nix
Jalil David Salamé Messina 88fe396bf2
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
[fix] nvim: system module brok 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:04 +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;
}