mirror of
https://github.com/srid/nixos-config.git
synced 2026-04-17 09:45:17 +08:00
- Add opencode/web.nix module for web service configuration - Bind to Tailscale IP (100.122.32.106) on port 4096 - Pass JUSPAY_API_KEY from agenix secret to service - Update flake inputs: nixpkgs/unstable, nix-darwin/master, home-manager/master
9 lines
184 B
Nix
9 lines
184 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.opencode.web = {
|
|
enable = true;
|
|
# Bind to Tailscale IP only
|
|
extraArgs = [ "--hostname" "100.122.32.106" "--port" "4096" ];
|
|
};
|
|
}
|