Compare commits

..

No commits in common. "5d0b1b9be712070215f5936fed08b54dcc9b183f" and "7e4f15496fc5c6ebf7a4d41977f2ef2b77af22aa" have entirely different histories.

1 changed files with 12 additions and 8 deletions

View File

@ -107,23 +107,23 @@ in {
target: dev
outputs:
dev:
dbname: dev_baseddata
host: ${baseddataPostgresIp}
pass: '${config.sops.placeholder."software/postgres/baseddata/user_password"}'
dbname: dev_baseddata_models
host: ${config.sops.placeholder."software/postgres/baseddata_models/ip"}
pass: '${config.sops.placeholder."software/postgres/baseddata_models/password"}'
port: 5432
schema: models
threads: 6
type: postgres
user: ${config.sops.placeholder."software/postgres/baseddata/user_username"}
user: ${config.sops.placeholder."software/postgres/baseddata_models/username"}
prod:
dbname: baseddata
host: ${baseddataPostgresIp}
pass: '${config.sops.placeholder."software/postgres/baseddata/user_password"}'
dbname: baseddata_models
host: ${config.sops.placeholder."software/postgres/baseddata_models/ip"}
pass: '${config.sops.placeholder."software/postgres/baseddata_models/password"}'
port: 5432
schema: models
threads: 6
type: postgres
user: ${config.sops.placeholder."software/postgres/baseddata/user_username"}
user: ${config.sops.placeholder."software/postgres/baseddata_models/username"}
'';
};
@ -160,4 +160,8 @@ in {
${username} = import ../../../../home/${hostname}.nix;
};
};
environment.systemPackages = [
#inputs.sqlfmt.packages.x86_64-linux.sqlfmt
];
}