1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-14 11:47:31 +00:00
flake-parts/flake.nix

19 lines
393 B
Nix
Raw Normal View History

2021-10-27 09:05:52 +00: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; };
2021-11-21 14:28:25 +00:00
defaultTemplate = {
2022-05-11 20:05:39 +00:00
path = ./template/default;
2021-11-21 14:28:25 +00:00
description = ''
A minimal flake using flake-modules-core.
'';
};
2021-10-27 09:05:52 +00:00
};
}