mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
27 lines
415 B
Nix
27 lines
415 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
./dev
|
|
./helpers.nix
|
|
./lib.nix
|
|
./legacy-packages.nix
|
|
./modules.nix
|
|
./overlays.nix
|
|
./packages.nix
|
|
./templates.nix
|
|
./tests.nix
|
|
./wrappers.nix
|
|
];
|
|
|
|
perSystem = {
|
|
pkgs,
|
|
system,
|
|
...
|
|
}: {
|
|
_module.args = {
|
|
pkgsUnfree = import inputs.nixpkgs {
|
|
inherit system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
};
|
|
}
|