Compare commits

..

2 commits

Author SHA1 Message Date
Jermeiah S
66eaebe848
caddy: now resolving incus addresses
Some checks failed
/ deploy (push) Has been cancelled
/ check (push) Has been cancelled
2025-06-29 12:57:51 -04:00
Jermeiah S
021d76dbc4
feature: improved checks and build time 2025-06-29 12:47:09 -04:00
3 changed files with 7 additions and 3 deletions

View file

@ -4,6 +4,7 @@ jobs:
runs-on: nix runs-on: nix
steps: steps:
- uses: https://code.forgejo.org/actions/checkout@v3 - uses: https://code.forgejo.org/actions/checkout@v3
- run: nix run github:Mic92/nix-fast-build
- run: nix flake check . - run: nix flake check .
deploy: deploy:

View file

@ -1,7 +1,7 @@
{ {
flake, flake,
modulesPath, modulesPath,
config, # config,
... ...
}: }:
@ -18,10 +18,10 @@ in
enable = true; enable = true;
extraConfig = '' extraConfig = ''
git.skdevstudios.com { git.skdevstudios.com {
reverse_proxy forgejo.local:3000 reverse_proxy forgejo.incus:3000
} }
tofu.skdevstudios.com { tofu.skdevstudios.com {
reverse_proxy tofu.local:9000 reverse_proxy tofu.incus:9000
} }
# :3306 { # :3306 {
# reverse_proxy 10.173.91.154:3306 # reverse_proxy 10.173.91.154:3306

View file

@ -56,4 +56,7 @@ in
# remoteBuild = true; # remoteBuild = true;
nodes = lib.mapAttrs genNode deployableNodes; nodes = lib.mapAttrs genNode deployableNodes;
}; };
flake.checks = builtins.mapAttrs (
system: deployLib: deployLib.deployChecks self.deploy
) deploy-rs.lib;
} }