nix-config/modules/nixvim/flake-outputs.nix

14 lines
239 B
Nix
Raw Normal View History

2025-07-26 02:35:57 +01:00
{ config, ... }:
{
perSystem =
{ inputs', pkgs, ... }:
{
2025-08-02 23:26:16 +01:00
packages.neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
2025-07-26 02:35:57 +01:00
inherit pkgs;
module = config.flake.modules.nixvim.custom;
};
};
}