feature: added support for running agenix on home-manager activation

This commit is contained in:
ElliottSullingeFarrall 2024-09-29 22:28:53 +01:00
parent c69b98e6e7
commit f2725cda13

View file

@ -253,5 +253,9 @@ in {
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/agenix/stderr";
};
};
home.activation.agenix = lib.mkIf pkgs.stdenv.hostPlatform.isLinux (
lib.hm.dag.entryAfter ["linkGeneration"] mountingScript
);
};
}