Add rbw config for home-manager

This commit is contained in:
albert 2024-03-04 09:36:45 +09:00
parent c7f3ee9b08
commit cc26e937b0
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
2 changed files with 11 additions and 0 deletions

View file

@ -8,5 +8,6 @@
./ranger.nix
./ssh.nix
./nixvim.nix
./rbw.nix
];
}

View file

@ -0,0 +1,10 @@
{ ... }: {
# Bitwarden CLI app
programs.rbw = {
enable = true;
base_url = "https://pass.sysctl.io";
email = "albert@sysctl.io";
lock_timeout = 3600;
settings = {};
};
}