nix-config/modules2/packages.nix

18 lines
338 B
Nix
Raw Normal View History

2025-07-26 02:35:57 +01:00
{ config, ... }:
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-26 02:35:57 +01:00
module = config.flake.modules.nixvim.custom;
2025-07-09 06:48:20 +01:00
};
2025-07-09 02:12:31 +01:00
};
};
}