mirror of
https://gitlab.com/TECHNOFAB/soonix.git
synced 2026-02-02 07:15:06 +01:00
chore: initial commit
This commit is contained in:
commit
25cc087b1d
17 changed files with 741 additions and 0 deletions
25
nix/repo/devShells.nix
Normal file
25
nix/repo/devShells.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue