From 8c225a381dc6ad7600753898b67fac17b26b016d Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 30 Dec 2025 09:57:43 -0600 Subject: [PATCH] remove(security): avante key --- modules/system/security.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/system/security.nix b/modules/system/security.nix index ccacb5c..6a1d913 100644 --- a/modules/system/security.nix +++ b/modules/system/security.nix @@ -18,14 +18,14 @@ neededForUsers = true; }; - AVANTE_GEMINI_API_KEY = { - owner = "kenji"; - }; + # AVANTE_GEMINI_API_KEY = { + # owner = "kenji"; + # }; }; }; - programs.fish.interactiveShellInit = '' - if test -f ${config.sops.secrets.AVANTE_GEMINI_API_KEY.path} - set -gx AVANTE_GEMINI_API_KEY (cat ${config.sops.secrets.AVANTE_GEMINI_API_KEY.path}) - end - ''; + # programs.fish.interactiveShellInit = '' + # if test -f ${config.sops.secrets.AVANTE_GEMINI_API_KEY.path} + # set -gx AVANTE_GEMINI_API_KEY (cat ${config.sops.secrets.AVANTE_GEMINI_API_KEY.path}) + # end + # ''; }