mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
27 lines
402 B
Nix
27 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|