14 lines
239 B
Nix
14 lines
239 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
perSystem =
|
||
|
{ inputs', pkgs, ... }:
|
||
|
{
|
||
|
packages.nixvim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
|
||
|
inherit pkgs;
|
||
|
|
||
|
module = config.flake.modules.nixvim.custom;
|
||
|
};
|
||
|
};
|
||
|
}
|