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