2024-06-22 19:25:51 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
helpers,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
# Force inputs to be included
|
|
|
|
nixvim = import ./nixvim.nix {inherit lib pkgs config helpers;};
|
|
|
|
in {
|
2024-05-04 20:57:33 +02:00
|
|
|
imports = [./options.nix];
|
2024-02-16 20:10:20 +01:00
|
|
|
|
2024-06-22 19:25:51 +02:00
|
|
|
config.programs.nixvim = nixvim.config;
|
2024-02-16 20:10:20 +01:00
|
|
|
}
|