mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
26 lines
402 B
Nix
26 lines
402 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
./checks.nix
|
|
./dev.nix
|
|
./lib.nix
|
|
./legacy-packages.nix
|
|
./modules.nix
|
|
./overlays.nix
|
|
./packages.nix
|
|
./templates.nix
|
|
./wrappers.nix
|
|
];
|
|
|
|
perSystem = {
|
|
pkgs,
|
|
system,
|
|
...
|
|
}: {
|
|
_module.args = {
|
|
pkgsUnfree = import inputs.nixpkgs {
|
|
inherit system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
};
|
|
}
|