19 lines
425 B
Nix
19 lines
425 B
Nix
{ ... }:
|
|
{
|
|
age.secrets.nextcloudAdminPassword = {
|
|
owner = "nextcloud";
|
|
group = "nextcloud";
|
|
file = ./nextcloudAdminPasswordFile.age;
|
|
};
|
|
age.secrets.nextcloudDatabasePassword = {
|
|
owner = "nextcloud";
|
|
group = "nextcloud";
|
|
file = ./nextcloudDatabasePasswordFile.age;
|
|
};
|
|
|
|
age.secrets.kanboard-secrets = {
|
|
owner = "kanboard";
|
|
group = "kanboard";
|
|
file = ./kanboard-secrets.age;
|
|
};
|
|
}
|