nix-community.nixvim/flake-modules/default.nix
Matt Sturgeon 7a147234f8
lib: rename helpers.nix -> default.nix
The old `default.nix` is inlined into the "lib" flake-module, which is
the only place it was used.

This allows "helpers" to take its rightful place at the root of `./lib` 👑
2024-09-13 17:25:17 +01:00

24 lines
383 B
Nix

{ inputs, ... }:
{
imports = [
./dev
./lib.nix
./legacy-packages.nix
./overlays.nix
./packages.nix
./templates.nix
./tests.nix
./wrappers.nix
];
perSystem =
{ system, ... }:
{
_module.args = {
pkgsUnfree = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
};
};
}