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