html.nix/flake.nix

18 lines
391 B
Nix
Raw Normal View History

2021-05-15 02:30:42 +03:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
2023-04-06 01:43:12 +03:00
parts.url = "github:hercules-ci/flake-parts";
examples.url = "path:./examples";
};
2023-04-06 01:43:12 +03:00
outputs = inp:
inp.parts.lib.mkFlake {inputs = inp;} {
debug = true;
systems = ["x86_64-linux"];
flake = {
flakeModule = ./default.nix;
inherit (inp.examples) apps;
2021-05-18 23:10:21 +03:00
};
2022-07-30 12:42:09 +03:00
};
2021-05-15 02:30:42 +03:00
}