chore: update rensa and use improved input handling

This commit is contained in:
technofab 2025-08-20 09:03:18 +02:00
parent fbacfc149b
commit e76bef387e
No known key found for this signature in database
7 changed files with 70 additions and 33 deletions

View file

@ -1,13 +1,10 @@
{
inputs,
cell,
}: let
devshell = import "${inputs.self}/lib" {
pkgs = inputs.nixpkgs;
};
{inputs, ...}: let
inherit (inputs) pkgs devshell;
in {
default = devshell.mkShell {
packages = [inputs.nixpkgs.alejandra];
packages = [
pkgs.alejandra
];
env."HELLO".value = "world!";
enterShellCommands.test = {
text = "echo Hello $HELLO";