nixos-config/modules/home/work/juspay.nix
2026-03-18 09:16:12 -04:00

38 lines
754 B
Nix

# Juspay-specific configuration using the work jump host module
{ flake, ... }:
let
inherit (flake.inputs) jumphost-nix;
homeMod = flake.inputs.self + /modules/home;
in
{
imports = [
"${jumphost-nix}/module.nix"
"${homeMod}/agenix.nix"
# "${homeMod}/claude-code/juspay.nix" # Disabled: not using Claude Code at Juspay
"${homeMod}/opencode"
];
programs.jumphost = {
enable = true;
host = "vanjaram.tail12b27.ts.net";
sshHosts = {
"ssh.bitbucket.juspay.net".user = "git";
};
git = {
baseCodeDir = "~/juspay";
email = "sridhar.ratnakumar@juspay.in";
};
socks5Proxy = {
enable = true;
};
};
home.shellAliases = {
jcurl = "curl --socks5 localhost:1080";
};
}