mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
11 lines
227 B
Nix
11 lines
227 B
Nix
_: {
|
|
services.postgresql = {
|
|
ensureDatabases = ["bitwarden_rs"];
|
|
ensureUsers = [
|
|
{
|
|
name = "bitwarden_rs";
|
|
ensurePermissions = {"DATABASE bitwarden_rs" = "ALL PRIVILEGES";};
|
|
}
|
|
];
|
|
};
|
|
}
|