Compare commits
2 Commits
7e4f15496f
...
5d0b1b9be7
Author | SHA1 | Date |
---|---|---|
Sam | 5d0b1b9be7 | |
Sam | 7be587d7b1 |
|
@ -107,23 +107,23 @@ in {
|
|||
target: dev
|
||||
outputs:
|
||||
dev:
|
||||
dbname: dev_baseddata_models
|
||||
host: ${config.sops.placeholder."software/postgres/baseddata_models/ip"}
|
||||
pass: '${config.sops.placeholder."software/postgres/baseddata_models/password"}'
|
||||
dbname: dev_baseddata
|
||||
host: ${baseddataPostgresIp}
|
||||
pass: '${config.sops.placeholder."software/postgres/baseddata/user_password"}'
|
||||
port: 5432
|
||||
schema: models
|
||||
threads: 6
|
||||
type: postgres
|
||||
user: ${config.sops.placeholder."software/postgres/baseddata_models/username"}
|
||||
user: ${config.sops.placeholder."software/postgres/baseddata/user_username"}
|
||||
prod:
|
||||
dbname: baseddata_models
|
||||
host: ${config.sops.placeholder."software/postgres/baseddata_models/ip"}
|
||||
pass: '${config.sops.placeholder."software/postgres/baseddata_models/password"}'
|
||||
dbname: baseddata
|
||||
host: ${baseddataPostgresIp}
|
||||
pass: '${config.sops.placeholder."software/postgres/baseddata/user_password"}'
|
||||
port: 5432
|
||||
schema: models
|
||||
threads: 6
|
||||
type: postgres
|
||||
user: ${config.sops.placeholder."software/postgres/baseddata_models/username"}
|
||||
user: ${config.sops.placeholder."software/postgres/baseddata/user_username"}
|
||||
|
||||
'';
|
||||
};
|
||||
|
@ -160,8 +160,4 @@ in {
|
|||
${username} = import ../../../../home/${hostname}.nix;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
#inputs.sqlfmt.packages.x86_64-linux.sqlfmt
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue