aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/home-manager.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-06-08 20:01:34 -0700
committerFranck Cuny <franck@fcuny.net>2025-06-08 20:01:34 -0700
commitf67e56485509ce87bfc8d079813261848037104d (patch)
tree5478931cfaa2133939154821ee7f8b75149b3d07 /nix/users/fcuny/home-manager.nix
parentinstall agenix again (diff)
downloadinfra-f67e56485509ce87bfc8d079813261848037104d.tar.gz
use agenix to manage some secrets
I have some secrets that I want to manage for my user without having to rely on 1password, and ensure proper rotation everywhere when needed. For now we only have two secrets (one for `llm` and another one is the API key for anthropic for Emacs). Will document the process better in the near future.
Diffstat (limited to '')
-rw-r--r--nix/users/fcuny/home-manager.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/users/fcuny/home-manager.nix b/nix/users/fcuny/home-manager.nix
index ae8c319..54b5ad7 100644
--- a/nix/users/fcuny/home-manager.nix
+++ b/nix/users/fcuny/home-manager.nix
@@ -21,6 +21,7 @@ in
./1password.nix
./dev.nix
./media.nix
+ ./secrets.nix
]
++ lib.optionals (machineUtils.isMachineType "work" systemName) [ ./work.nix ]
++ lib.optionals (machineUtils.isMachineType "personal" systemName) [ ./personal.nix ];