nix-config/modules2/packages.nix
Oliver Davies 59403e4660
All checks were successful
/ check (push) Successful in 1m28s
Move flake-modules to modules2
Move flake-modules to modules2 so they are automatically imported by
import-tree.
2025-07-23 12:38:52 +01:00

17 lines
353 B
Nix

{ 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";
};
};
};
}