nixos-config/modules/home/work/juspay.nix
Sridhar Ratnakumar 2e1e36520c remove
2026-04-04 13:47:23 -04:00

37 lines
734 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
];
programs.jumphost = {
enable = true;
host = "nix-infra@dosa.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";
};
}