nix-community.nixvim/flake-modules/default.nix
Matt Sturgeon d3cb750e6a
update-scripts: move out of flake
See the explanation in the new update-scripts/README.md file.
2024-08-03 21:56:40 +01:00

25 lines
401 B
Nix

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