nixos-systems/roles/corp.nix
Eli Ribble 5288c5857a
Add separate restic roles for separate credentials
I don't want corp and prod accidentally smashing each other, or being
used as a credentials escalation attack.
2026-01-13 14:57:33 +00:00

19 lines
456 B
Nix

{ config, lib, pkgs, ... }: {
myModules = {
authentik.enable = true;
caddy.enable = true;
cloudreve.enable = true;
collabora.enable = true;
glitchtip.enable = false;
element-web.enable = true;
label-studio.enable = true;
librechat.enable = true;
minio.enable = true;
restic.role = "corp";
static-websites.enable = true;
synapse.enable = true;
timecardbot.enable = true;
twenty-crm.enable = true;
vikunja.enable = true;
};
}