2025-09-13 02:38:36 -04:00
|
|
|
{
|
|
|
|
|
inputs,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
inputs.agenix.nixosModules.default
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = [
|
2025-11-08 12:12:44 -05:00
|
|
|
inputs.agenix.packages.${pkgs.stdenv.hostPlatform.system}.default # CLI Tool
|
2025-09-13 02:38:36 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
age.secrets = {
|
|
|
|
|
tailscale-auth.file = ../../secrets/tailscale-auth.age;
|
|
|
|
|
eclypsecloud-eclypse.file = ../../secrets/eclypsecloud-eclypse.age;
|
|
|
|
|
eclypse-password.file = ../../secrets/eclypse-password.age;
|
|
|
|
|
};
|
|
|
|
|
}
|