From 651cc64d3912a28b66b24bbe90b9c8ae94a2998f Mon Sep 17 00:00:00 2001 From: Jet Date: Sun, 31 May 2026 13:35:22 -0700 Subject: [PATCH] feat: add corp.primitive.dev email for work git --- home-modules/lib.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/home-modules/lib.nix b/home-modules/lib.nix index 2a25317..d9f08bc 100644 --- a/home-modules/lib.nix +++ b/home-modules/lib.nix @@ -2,13 +2,18 @@ config, pkgs, inputs, + hostname, ... }: let sshPublicKeys = (import ../ssh-public-keys.nix).jet; name = "Jet"; - email = "jet@extremist.software"; + email = + if hostname == "framework-work" then + "jet@corp.primitive.dev" + else + "jet@extremist.software"; sshSigningKey = "~/.ssh/id_ed25519"; opencodeLibraryPath = pkgs.lib.makeLibraryPath [ pkgs.stdenv.cc.cc.lib ]; opencodeMine = pkgs.writeShellApplication {