nix-config/flake-modules/packages.nix
2025-07-09 06:48:20 +01:00

17 lines
360 B
Nix

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