From 7b842b334234d721885509dba2eac24b164969d8 Mon Sep 17 00:00:00 2001 From: Jet Date: Wed, 18 Mar 2026 13:30:29 -0700 Subject: [PATCH] feat: add tor service and style feat: add tor service --- flake.lock | 84 ++++++++++++++++++++++++++++++- flake.nix | 8 ++- index.html | 5 +- module.nix | 75 +++++++++++++++++++++++++-- secrets.nix | 10 ++++ secrets/tor-onion-hostname.age | Bin 0 -> 385 bytes secrets/tor-onion-public-key.age | 7 +++ secrets/tor-onion-secret-key.age | 8 +++ secrets/webhook-secret.age | 7 +++ src/main.ts | 4 -- src/pages/qa.ts | 8 +-- src/styles/globals.css | 11 ++-- 12 files changed, 203 insertions(+), 24 deletions(-) create mode 100644 secrets.nix create mode 100644 secrets/tor-onion-hostname.age create mode 100644 secrets/tor-onion-public-key.age create mode 100644 secrets/tor-onion-secret-key.age create mode 100644 secrets/webhook-secret.age diff --git a/flake.lock b/flake.lock index e780395..05c1b8c 100644 --- a/flake.lock +++ b/flake.lock @@ -1,8 +1,53 @@ { "nodes": { + "agenix": { + "inputs": { + "darwin": "darwin", + "home-manager": "home-manager", + "nixpkgs": [ + "nixpkgs" + ], + "systems": "systems" + }, + "locked": { + "lastModified": 1770165109, + "narHash": "sha256-9VnK6Oqai65puVJ4WYtCTvlJeXxMzAp/69HhQuTdl/I=", + "owner": "ryantm", + "repo": "agenix", + "rev": "b027ee29d959fda4b60b57566d64c98a202e0feb", + "type": "github" + }, + "original": { + "owner": "ryantm", + "repo": "agenix", + "type": "github" + } + }, + "darwin": { + "inputs": { + "nixpkgs": [ + "agenix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1744478979, + "narHash": "sha256-dyN+teG9G82G+m+PX/aSAagkC+vUv0SgUw3XkPhQodQ=", + "owner": "lnl7", + "repo": "nix-darwin", + "rev": "43975d782b418ebf4969e9ccba82466728c2851b", + "type": "github" + }, + "original": { + "owner": "lnl7", + "ref": "master", + "repo": "nix-darwin", + "type": "github" + } + }, "flake-utils": { "inputs": { - "systems": "systems" + "systems": "systems_2" }, "locked": { "lastModified": 1731533236, @@ -18,6 +63,27 @@ "type": "github" } }, + "home-manager": { + "inputs": { + "nixpkgs": [ + "agenix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1745494811, + "narHash": "sha256-YZCh2o9Ua1n9uCvrvi5pRxtuVNml8X2a03qIFfRKpFs=", + "owner": "nix-community", + "repo": "home-manager", + "rev": "abfad3d2958c9e6300a883bd443512c55dfeb1be", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "home-manager", + "type": "github" + } + }, "nixpkgs": { "locked": { "lastModified": 1772542754, @@ -52,6 +118,7 @@ }, "root": { "inputs": { + "agenix": "agenix", "flake-utils": "flake-utils", "nixpkgs": "nixpkgs", "rust-overlay": "rust-overlay" @@ -89,6 +156,21 @@ "repo": "default", "type": "github" } + }, + "systems_2": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index da49c1d..0ff9096 100644 --- a/flake.nix +++ b/flake.nix @@ -4,8 +4,10 @@ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; rust-overlay.url = "github:oxalica/rust-overlay"; flake-utils.url = "github:numtide/flake-utils"; + agenix.url = "github:ryantm/agenix"; + agenix.inputs.nixpkgs.follows = "nixpkgs"; }; - outputs = { self, nixpkgs, rust-overlay, flake-utils }: + outputs = { self, nixpkgs, rust-overlay, flake-utils, agenix }: (flake-utils.lib.eachDefaultSystem (system: let overlays = [ (import rust-overlay) ]; @@ -81,7 +83,9 @@ pname = "jetpham-qa-api"; version = "0.1.0"; src = ./api; - cargoHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; + cargoHash = "sha256-/EgiCn5N3E1tCcBWI3Sm3NGQt2h8l8yPwi/ZjporiVs="; + nativeBuildInputs = [ pkgs.pkg-config ]; + buildInputs = [ pkgs.openssl ]; }; in { diff --git a/index.html b/index.html index 70f11c3..f78d6bc 100644 --- a/index.html +++ b/index.html @@ -80,7 +80,7 @@ -