compose.yaml, secrets.yaml, .sops.yaml flake.nix

This commit is contained in:
Rorik Star Platinum 2025-11-03 21:25:56 +03:00
parent 6421218b28
commit 2cc36354c5
5 changed files with 94 additions and 0 deletions

20
flake.nix Normal file
View file

@ -0,0 +1,20 @@
{
description = "Multiberry Backend Dev";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
rustup
cargo-watch
sqlx-cli
];
};
}
);
}