Delete packages.nix
All checks were successful
/ check (push) Successful in 1m54s

This commit is contained in:
Oliver Davies 2025-07-29 12:25:18 +01:00
parent f8489d5c72
commit d5033260c9

View file

@ -1,17 +0,0 @@
{ config, ... }:
{
perSystem =
{ inputs', pkgs, ... }:
{
packages = {
default = pkgs.mkShell { buildInputs = with pkgs; [ just ]; };
neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
inherit pkgs;
module = config.flake.modules.nixvim.custom;
};
};
};
}