Should be a path, not a string

This commit is contained in:
niten 2024-02-07 15:16:33 -08:00
parent f1035af13b
commit 416d8db0b1
1 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,8 @@ let
hostname = config.instance.hostname;
mkEnvFile = attrs:
concatStringsSep "\n" (mapAttrsToList (k: v: "${k}=${v}") attrs);
writeText "env-file"
(concatStringsSep "\n" (mapAttrsToList (k: v: "${k}=${v}") attrs));
databasePassword = pkgs.lib.passwd.stablerandom-passwd-file "immich-db-passwd"
config.instance.build-seed;