nixos-config/system/secrets.nix

21 lines
926 B
Nix
Raw Normal View History

2022-12-23 11:22:58 -03:00
{ pkgs, ... }: {
age = {
2023-10-14 16:30:51 -03:00
identityPaths = [ "/home/lelgenio/.ssh/id_rsa" "/root/.ssh/id_rsa" ];
2022-12-23 11:22:58 -03:00
secrets.lelgenio-cachix.file = ../secrets/lelgenio-cachix.age;
secrets.monolith-gitlab-runner-thoreb-itinerario-registrationConfigFile.file =
../secrets/monolith-gitlab-runner-thoreb-itinerario-registrationConfigFile.age;
2023-02-24 12:37:35 -03:00
secrets.gitlab-runner-thoreb-telemetria-registrationConfigFile.file =
../secrets/gitlab-runner-thoreb-telemetria-registrationConfigFile.age;
2023-01-12 15:10:10 -03:00
secrets.rainbow-gitlab-runner-thoreb-itinerario-registrationConfigFile.file =
../secrets/rainbow-gitlab-runner-thoreb-itinerario-registrationConfigFile.age;
2023-01-25 14:02:44 -03:00
secrets.monolith-nix-serve-privkey.file =
../secrets/monolith-nix-serve-privkey.age;
2023-10-14 16:30:51 -03:00
secrets.ghost-nextcloud = {
file = ../secrets/monolith-nix-serve-privkey.age;
mode = "400";
owner = "nextcloud";
group = "nextcloud";
};
2022-12-23 11:22:58 -03:00
};
}