nix-config/flake-modules/packages.nix

18 lines
353 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;
2025-07-17 21:16:39 +01:00
module = import "${self}/modules/home-manager/neovim/config";
2025-07-09 06:48:20 +01:00
};
2025-07-09 02:12:31 +01:00
};
};
}