mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
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` 👑
24 lines
383 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|