nix-config/flake-modules/packages.nix

18 lines
360 B
Nix
Raw Normal View History

2025-07-09 06:48:20 +01:00
{ self, ... }:
2025-07-09 02:12:31 +01:00
{
perSystem =
2025-07-09 06:48:20 +01:00
{ inputs', pkgs, ... }:
2025-07-09 02:12:31 +01:00
{
packages = {
default = pkgs.mkShell { buildInputs = with pkgs; [ just ]; };
2025-07-09 06:48:20 +01:00
2025-07-09 07:50:57 +01:00
neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
2025-07-09 06:48:20 +01:00
inherit pkgs;
module = import "${self}/modules/home-manager/coding/neovim/config";
};
2025-07-09 02:12:31 +01:00
};
};
}