chore: separate backend from frontend
Some checks failed
Publish Docker Images / build-and-publish (push) Failing after 8m46s

This commit is contained in:
2025-11-15 12:46:24 +01:00
parent 9f1d4db0de
commit fc1a5e3ac7
86 changed files with 133 additions and 14721 deletions

11
nix/rust-version.nix Normal file
View File

@@ -0,0 +1,11 @@
{
rust-overlay,
inputs,
system,
...
}: let
overlays = [(import rust-overlay)];
in rec {
pkgs = import inputs.nixpkgs {inherit system overlays;};
version = pkgs.rust-bin.stable.latest.default;
}