nix-config/modules2/nixvim/flake-outputs.nix
Oliver Davies 3cad85bcdf
All checks were successful
/ check (push) Successful in 1m36s
Rename package
2025-08-02 23:26:16 +01:00

13 lines
239 B
Nix

{ config, ... }:
{
perSystem =
{ inputs', pkgs, ... }:
{
packages.neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
inherit pkgs;
module = config.flake.modules.nixvim.custom;
};
};
}