Compare commits
No commits in common. "5d0b1b9be712070215f5936fed08b54dcc9b183f" and "7e4f15496fc5c6ebf7a4d41977f2ef2b77af22aa" have entirely different histories.
5d0b1b9be7
...
7e4f15496f
|
@ -107,23 +107,23 @@ in {
|
||||||
target: dev
|
target: dev
|
||||||
outputs:
|
outputs:
|
||||||
dev:
|
dev:
|
||||||
dbname: dev_baseddata
|
dbname: dev_baseddata_models
|
||||||
host: ${baseddataPostgresIp}
|
host: ${config.sops.placeholder."software/postgres/baseddata_models/ip"}
|
||||||
pass: '${config.sops.placeholder."software/postgres/baseddata/user_password"}'
|
pass: '${config.sops.placeholder."software/postgres/baseddata_models/password"}'
|
||||||
port: 5432
|
port: 5432
|
||||||
schema: models
|
schema: models
|
||||||
threads: 6
|
threads: 6
|
||||||
type: postgres
|
type: postgres
|
||||||
user: ${config.sops.placeholder."software/postgres/baseddata/user_username"}
|
user: ${config.sops.placeholder."software/postgres/baseddata_models/username"}
|
||||||
prod:
|
prod:
|
||||||
dbname: baseddata
|
dbname: baseddata_models
|
||||||
host: ${baseddataPostgresIp}
|
host: ${config.sops.placeholder."software/postgres/baseddata_models/ip"}
|
||||||
pass: '${config.sops.placeholder."software/postgres/baseddata/user_password"}'
|
pass: '${config.sops.placeholder."software/postgres/baseddata_models/password"}'
|
||||||
port: 5432
|
port: 5432
|
||||||
schema: models
|
schema: models
|
||||||
threads: 6
|
threads: 6
|
||||||
type: postgres
|
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;
|
${username} = import ../../../../home/${hostname}.nix;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [
|
||||||
|
#inputs.sqlfmt.packages.x86_64-linux.sqlfmt
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue