mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
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.
15 lines
318 B
Nix
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";
|
|
};
|
|
};
|
|
}
|