From 1a1ce4246fcc212464ab2859b6eac7212cfdfc1e Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Wed, 9 Jul 2025 03:10:47 +0200 Subject: [PATCH] Home/Servenix: Add agenix secrets --- home/christoph/servenix/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home/christoph/servenix/default.nix b/home/christoph/servenix/default.nix index f949e539..da46c0c7 100644 --- a/home/christoph/servenix/default.nix +++ b/home/christoph/servenix/default.nix @@ -3,6 +3,7 @@ nixosConfig, config, lib, + username, ... }: { imports = [ @@ -10,6 +11,15 @@ ]; config = { + modules = { + agenix.secrets.${username} = [ + "heidi-discord-token" + "kopia-password" + "kopia-server-username" + "kopia-server-password" + ]; + }; + home.packages = with pkgs; [ docker-compose ];