nix-config/devShells.nix
2025-10-17 15:23:13 -03:00

16 lines
231 B
Nix

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