chore: initial commit

This commit is contained in:
technofab 2025-08-25 16:45:22 +02:00
commit 25cc087b1d
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
17 changed files with 741 additions and 0 deletions

25
nix/repo/devShells.nix Normal file
View file

@ -0,0 +1,25 @@
{inputs, ...}: let
inherit (inputs) pkgs devshell soonix;
in {
default = devshell.mkShell {
imports = [soonix.devshellModule];
packages = [
pkgs.alejandra
pkgs.nil
];
soonix.hooks.test = {
output = "test.yaml";
generator = "nix";
data = {
name = "soonix-test";
version = "1.0.0";
};
opts.format = "yaml";
hook = {
mode = "copy";
gitignore = true;
};
};
};
}