worker: fix assets binding and SPA routes

This commit is contained in:
every.channel 2026-02-16 17:46:32 -05:00
parent 339aef50e0
commit 2e5fb0880f
No known key found for this signature in database
9 changed files with 510 additions and 11 deletions

View file

@ -9,7 +9,14 @@
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, agenix }:
flake-utils.lib.eachDefaultSystem (system:
let
nixosModules = rec {
ec-node = import ./nix/modules/ec-node.nix;
default = ec-node;
};
in
{ inherit nixosModules; }
// flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
@ -40,6 +47,8 @@
packages = {
agenix = agenixPkg;
fj = pkgs.forgejo-cli;
ec-node = pkgs.callPackage ./nix/pkgs/ec-node.nix { };
ec-cli = pkgs.callPackage ./nix/pkgs/ec-cli.nix { };
};
devShells.default = pkgs.mkShell {