1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-15 04:58:03 +00:00
flake-parts/flake.nix

16 lines
306 B
Nix
Raw Normal View History

2021-10-27 11:05:52 +02:00
{
description = "Flake basics described using the module system";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }: {
lib = import ./lib.nix { inherit (nixpkgs) lib; };
flakeModules = {
core = ./all-modules.nix;
};
};
}