nix-community.nixvim/flake-modules/default.nix

27 lines
425 B
Nix
Raw Normal View History

2024-05-05 19:39:35 +02:00
{ inputs, ... }:
{
imports = [
2024-03-01 22:43:05 +01:00
./dev
./helpers.nix
./lib.nix
./legacy-packages.nix
./modules.nix
./overlays.nix
./packages.nix
./templates.nix
2024-01-06 15:55:50 +01:00
./tests.nix
./wrappers.nix
];
2024-05-05 19:39:35 +02:00
perSystem =
{ pkgs, system, ... }:
{
_module.args = {
pkgsUnfree = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
};
};
}