mirror of
https://gitlab.com/TECHNOFAB/coder-templates.git
synced 2025-12-12 02:00:11 +01:00
23 lines
396 B
Nix
23 lines
396 B
Nix
{
|
|
inputs,
|
|
cell,
|
|
...
|
|
}: let
|
|
inherit (inputs) pkgs devshell treefmt soonix;
|
|
inherit (cell) ci;
|
|
in {
|
|
default = devshell.mkShell {
|
|
imports = [
|
|
soonix.devshellModule
|
|
];
|
|
packages = [
|
|
(treefmt.mkWrapper pkgs {
|
|
programs = {
|
|
alejandra.enable = true;
|
|
mdformat.enable = true;
|
|
};
|
|
})
|
|
];
|
|
soonix.hooks.ci = ci.soonix;
|
|
};
|
|
}
|