mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
25 lines
401 B
Nix
25 lines
401 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./dev
|
|
./helpers.nix
|
|
./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;
|
|
};
|
|
};
|
|
};
|
|
}
|