nix-config/devShells.nix
2025-10-18 16:20:43 -03:00

16 lines
235 B
Nix

{ ... }:
{
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
agenix-cli
deploy-rs
nil
nixfmt-rfc-style
];
};
};
}