mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-05 00:13:12 +00:00
31 lines
1.5 KiB
Nix
31 lines
1.5 KiB
Nix
|
{ config, pkgs, ... }:
|
||
|
let
|
||
|
cfg = config.services.userdata;
|
||
|
in
|
||
|
{
|
||
|
systemd.tmpfiles.rules =
|
||
|
let
|
||
|
nextcloudDBPass = builtins.replaceStrings [ "\n" "\"" "\\" ] [ "\\n" "\\\"" "\\\\" ] cfg.nextcloud.databasePassword;
|
||
|
nextcloudAdminPass = builtins.replaceStrings [ "\n" "\"" "\\" ] [ "\\n" "\\\"" "\\\\" ] cfg.nextcloud.adminPassword;
|
||
|
resticPass = builtins.replaceStrings [ "\n" "\"" "\\" ] [ "\\n" "\\\"" "\\\\" ] cfg.resticPassword;
|
||
|
domain = builtins.replaceStrings [ "\n" "\"" "\\" ] [ "\\n" "\\\"" "\\\\" ] cfg.domain;
|
||
|
cloudflareCredentials = builtins.replaceStrings [ "\n" "\"" "\\" ] [ "\\n" "\\\"" "\\\\" ] ''
|
||
|
CF_API_KEY=${cfg.cloudflare.apiKey}
|
||
|
CLOUDFLARE_DNS_API_TOKEN=${cfg.cloudflare.apiKey}
|
||
|
CLOUDFLARE_ZONE_API_TOKEN=${cfg.cloudflare.apiKey}
|
||
|
'';
|
||
|
in
|
||
|
[
|
||
|
"d /var/restic 0660 restic - - -"
|
||
|
"d /var/bitwarden 0777 bitwarden_rs bitwarden_rs -"
|
||
|
"d /var/bitwarden/backup 0777 bitwarden_rs bitwarden_rs -"
|
||
|
"d /var/lib/pleroma 0600 pleroma pleroma - -"
|
||
|
"f /var/lib/pleroma/secrets.exs 0755 pleroma pleroma - -"
|
||
|
"f /var/domain 0444 selfprivacy-api selfprivacy-api - ${domain}"
|
||
|
"f /var/restic/restic-repo-password 0660 restic - - ${resticPass}"
|
||
|
"f /var/nextcloud-db-pass 0440 nextcloud nextcloud - ${nextcloudDBPass}"
|
||
|
"f /var/nextcloud-admin-pass 0440 nextcloud nextcloud - ${nextcloudAdminPass}"
|
||
|
"f /var/cloudflareCredentials.ini 0440 nginx acmerecievers - ${cloudflareCredentials}"
|
||
|
];
|
||
|
}
|