worker: fix assets binding and SPA routes
This commit is contained in:
parent
339aef50e0
commit
2e5fb0880f
9 changed files with 510 additions and 11 deletions
11
flake.nix
11
flake.nix
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue