14 lines
239 B
Nix
14 lines
239 B
Nix
|
{config, lib, pkgs, ... }:
|
||
|
{
|
||
|
services.bitwarden_rs = {
|
||
|
enable = true;
|
||
|
backupDir = "/home/bitwarden_backups";
|
||
|
config = {
|
||
|
signupsAllowed = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
backup.dirs = [ config.services.bitwarden_rs.backupDir ];
|
||
|
|
||
|
}
|