1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 07:22:49 +01:00
nixvim/flake-modules/default.nix

26 lines
421 B
Nix

{ inputs, ... }:
{
imports = [
./dev
./helpers.nix
./lib.nix
./legacy-packages.nix
./overlays.nix
./packages.nix
./templates.nix
./tests.nix
./wrappers.nix
./updates
];
perSystem =
{ pkgs, system, ... }:
{
_module.args = {
pkgsUnfree = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
};
};
}