13 lines
301 B
Nix
13 lines
301 B
Nix
{ ... }:
|
|
{
|
|
age.secrets.nextcloudAdminPassword = {
|
|
owner = "nextcloud";
|
|
group = "nextcloud";
|
|
file = ./nextcloudAdminPasswordFile.age;
|
|
};
|
|
age.secrets.nextcloudDatabasePassword = {
|
|
owner = "nextcloud";
|
|
group = "nextcloud";
|
|
file = ./nextcloudDatabasePasswordFile.age;
|
|
};
|
|
}
|