infrastructure/config/hosts/beltane/services/bitwarden.nix
kat witch 6a0f64b846 Matrix enablement among other things
Enabled matrix, provided new tmux config, enabled a few plugins for doom
emacs, added arc-nixexprs and matrix packages from that. Added backlight
and battery monitors to my waybar config. Added kat to video group so
backlight control is possible.
2021-02-10 17:38:29 +00:00

15 lines
318 B
Nix

{ config, pkgs, ... }:
let secrets = (import ../secrets.nix);
in {
services.bitwarden_rs = {
enable = true;
config = {
rocketPort = 4000;
websocketEnabled = true;
signupsAllowed = false;
adminToken = secrets.bitwarden.token;
domain = "https://vault.kittywit.ch";
};
};
}