Jalil David Salamé Messina
ac30838621
The architecture of nixvim doesn't let me use NixOS modules T-T, I need to use manual imports instead.
14 lines
229 B
Nix
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;
|
|
}
|