Move flake-modules to modules2
All checks were successful
/ check (push) Successful in 1m28s

Move flake-modules to modules2 so they are automatically imported by
import-tree.
This commit is contained in:
Oliver Davies 2025-07-23 12:00:00 +01:00
parent d34e78f8ba
commit 59403e4660
5 changed files with 1 additions and 8 deletions

17
modules2/packages.nix Normal file
View file

@ -0,0 +1,17 @@
{ self, ... }:
{
perSystem =
{ inputs', pkgs, ... }:
{
packages = {
default = pkgs.mkShell { buildInputs = with pkgs; [ just ]; };
neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
inherit pkgs;
module = import "${self}/modules/home-manager/neovim/config";
};
};
};
}