flake-modules -> flake

This commit is contained in:
Gaetan Lepage 2025-01-19 12:56:24 +01:00
parent cf647bc045
commit 998bae9dac
17 changed files with 1 additions and 1 deletions

19
flake/legacy-packages.nix Normal file
View file

@ -0,0 +1,19 @@
{ helpers, ... }:
{
perSystem =
{
makeNixvimWithModule,
system,
...
}:
{
legacyPackages = rec {
inherit makeNixvimWithModule;
makeNixvim = module: makeNixvimWithModule { inherit module; };
nixvimConfiguration = helpers.modules.evalNixvim {
inherit system;
};
};
};
}