mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-12 06:10:08 +01:00
8 lines
180 B
Nix
8 lines
180 B
Nix
{inputs, ...}: let
|
|
inherit (inputs) pkgs dslib;
|
|
in {
|
|
default = dslib.mkShell {
|
|
packages = [pkgs.alejandra];
|
|
enterShellCommands."ren".text = "echo Hello rensa!";
|
|
};
|
|
}
|