1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Simplify owner statements

This commit is contained in:
RGBCube 2024-01-15 13:26:17 +03:00
parent 77b4a81e2c
commit af1173cd93
No known key found for this signature in database
2 changed files with 4 additions and 18 deletions

View file

@ -5,15 +5,8 @@ let
fqdn = "metrics.${domain}";
in serverSystemConfiguration {
age.secrets."cube/password.grafana" = {
owner = "grafana";
group = "grafana";
};
age.secrets."cube/password.mail.grafana" = {
owner = "grafana";
group = "grafana";
};
age.secrets."cube/password.grafana".owner = "grafana";
age.secrets."cube/password.mail.grafana".owner = "grafana";
systemd.services.grafana.requires = [ "postgresql.service" ];

View file

@ -5,15 +5,8 @@ let
fqdn = "cloud.${domain}";
in serverSystemConfiguration {
age.secrets."cube/password.nextcloud" = {
owner = "nextcloud";
group = "nextcloud";
};
age.secrets."cube/password.mail.nextcloud" = {
owner = "nextcloud";
group = "nextcloud";
};
age.secrets."cube/password.nextcloud".owner = "nextcloud";
age.secrets."cube/password.mail.nextcloud".owner = "nextcloud";
systemd.services.nextcloud-setup.requires = [ "postgresql.service" ];