nix-config/shells/default.nix
2026-02-12 16:41:53 -03:00

15 lines
251 B
Nix

{ inputs, ... }:
{
perSystem =
{ pkgs, system, ... }:
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
inputs.agenix.packages.${system}.default
nil
nixfmt
];
};
};
}