nix-config/flake-modules/packages.nix
Oliver Davies 26072b5cff
All checks were successful
/ check (push) Successful in 1m28s
Extract flake modules
2025-07-09 02:35:21 +01:00

21 lines
457 B
Nix

{ inputs, self, ... }:
{
perSystem =
{ pkgs, system, ... }:
let
# TODO: refactor to use inputs' or similar.
nixvim = inputs.nixvim.legacyPackages.${system}.makeNixvimWithModule {
inherit pkgs;
module = import "${self}/modules/home-manager/coding/neovim/config";
};
in
{
packages = {
inherit nixvim;
default = pkgs.mkShell { buildInputs = with pkgs; [ just ]; };
};
};
}