html.nix/flake.nix

20 lines
384 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";
};
2023-04-06 01:43:12 +03:00
outputs = inp:
inp.parts.lib.mkFlake {inputs = inp;} {
debug = true;
systems = ["x86_64-linux"];
2023-04-06 05:43:25 +03:00
imports = [
./default.nix
./examples
];
2023-04-06 01:43:12 +03:00
flake = {
flakeModule = ./default.nix;
2021-05-18 23:10:21 +03:00
};
2022-07-30 12:42:09 +03:00
};
2021-05-15 02:30:42 +03:00
}