feat: add transformInputs which allows initializing inputs

This commit is contained in:
technofab 2025-08-15 15:29:49 +02:00
parent 7222ac48cd
commit 9f20f8c94b
No known key found for this signature in database
7 changed files with 25 additions and 17 deletions

View file

@ -1,7 +1,8 @@
{inputs, ...}: let
inherit (inputs) pkgs devshellLib;
inherit (inputs) pkgs dslib;
in {
default = devshellLib.mkShell {
default = dslib.mkShell {
packages = [pkgs.alejandra];
enterShellCommands."ren".text = "echo Hello rensa!";
};
}