This commit is contained in:
Oliver Davies 2025-07-09 06:48:20 +01:00
parent 26072b5cff
commit 93566f658c

View file

@ -1,21 +1,17 @@
{ inputs, self, ... }:
{ 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
{ inputs', pkgs, ... }:
{
packages = {
inherit nixvim;
default = pkgs.mkShell { buildInputs = with pkgs; [ just ]; };
nixvim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
inherit pkgs;
module = import "${self}/modules/home-manager/coding/neovim/config";
};
};
};
}