feat: make soonix a bit more flexible with and without devshell

This commit is contained in:
technofab 2025-09-02 14:21:53 +02:00
parent 3baef660cf
commit 690332ceea
No known key found for this signature in database
6 changed files with 106 additions and 37 deletions

23
nix/repo/soonix.nix Normal file
View file

@ -0,0 +1,23 @@
{
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