mirror of
https://gitlab.com/TECHNOFAB/soonix.git
synced 2025-12-11 22:00:05 +01:00
24 lines
386 B
Nix
24 lines
386 B
Nix
|
|
{
|
||
|
|
inputs,
|
||
|
|
...
|
||
|
|
}: let
|
||
|
|
inherit (inputs) soonix;
|
||
|
|
in
|
||
|
|
(soonix.make {
|
||
|
|
hooks = {
|
||
|
|
test = {
|
||
|
|
output = "test.yaml";
|
||
|
|
generator = "nix";
|
||
|
|
data = {
|
||
|
|
name = "soonix-test";
|
||
|
|
version = "1.0.0";
|
||
|
|
};
|
||
|
|
opts.format = "yaml";
|
||
|
|
hook = {
|
||
|
|
mode = "copy";
|
||
|
|
gitignore = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}).config
|