From 551e558ddfe714862083d5ff0d06f5535fd23abc 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/nixinator/default.nix | 3 +++ home/christoph/servenix/default.nix | 10 ++++++++++ 2 files changed, 13 insertions(+) diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index ce3de020..0da387ec 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -4,6 +4,7 @@ nixosConfig, config, lib, + username, ... }: { imports = [ @@ -12,6 +13,8 @@ config = { modules = { + # agenix.secrets.${username} = []; + hyprland = { kb-layout = "us"; kb-variant = "altgr-intl"; 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 ];