mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
23 lines
488 B
Nix
23 lines
488 B
Nix
{
|
|
inputs,
|
|
cell,
|
|
...
|
|
}: let
|
|
inherit (inputs) pkgs dslib soonix treefmt;
|
|
inherit (cell) ci;
|
|
in {
|
|
default = dslib.mkShell {
|
|
imports = [soonix.devshellModule];
|
|
packages = [
|
|
(treefmt.mkWrapper pkgs {
|
|
programs = {
|
|
alejandra.enable = true;
|
|
mdformat.enable = true;
|
|
};
|
|
settings.global.excludes = ["*LICENSE*.md"];
|
|
})
|
|
];
|
|
enterShellCommands."ren".text = "echo Hello rensa!";
|
|
soonix.hooks.ci = ci.soonix;
|
|
};
|
|
}
|