wip
All checks were successful
/ check (push) Successful in 1m18s
/ deploy (push) Has been skipped

This commit is contained in:
Jermeiah S 2025-06-29 19:35:44 -04:00
parent b0a3b7577b
commit d82e5022c5
No known key found for this signature in database
2 changed files with 10 additions and 2 deletions

View file

@ -25,10 +25,18 @@ in
];
sops.secrets.graylog = {
mode = "0400";
owner = "graylog";
group = "graylog";
};
systemd.services.graylog.serviceConfig.EnvironmentFile = config.sops.secrets.graylog.path;
systemd.services.graylog = {
after = [ "sops-nix.service" ];
requires = [ "sops-nix.service" ];
serviceConfig = {
EnvironmentFile = config.sops.secrets.graylog.path;
};
};
services = {
graylog = {
enable = true;