feat(git): use soft secrets to handle email and signing key

This commit is contained in:
Yorick Barbanneau 2025-08-11 22:22:31 +02:00
parent 55517dba81
commit 8bf663b78a
3 changed files with 10 additions and 11 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ pkgs, inputs, ... }: {
config.modules = {
application = {
zathura.enable = true;
@ -13,9 +13,8 @@
ghq.enable = true;
git = {
enable = true;
userEmail = "ybarbanneau@sellsy.com";
signingKey = "6E1A834E282FBD98B48069444447A19BBEDB8DBA";
signByDefault = true;
userEmail = inputs.nix-private.git.work.userEmail;
signingKey = inputs.nix-private.git.work.signingKey;
};
k8s = {
enable = true;