mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
15 lines
306 B
Nix
15 lines
306 B
Nix
{
|
|
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;
|
|
};
|
|
};
|
|
|
|
}
|