nix-config/flake-modules/packages.nix
2025-07-17 21:47:19 +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";
};
};
};
}