mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
8 lines
135 B
Nix
8 lines
135 B
Nix
|
|
{inputs, ...}: let
|
||
|
|
inherit (inputs) pkgs devshellLib;
|
||
|
|
in {
|
||
|
|
default = devshellLib.mkShell {
|
||
|
|
packages = [pkgs.alejandra];
|
||
|
|
};
|
||
|
|
}
|