mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
18 lines
214 B
Nix
18 lines
214 B
Nix
{
|
|
pkgs,
|
|
email,
|
|
...
|
|
}: {
|
|
programs.rbw = {
|
|
enable = true;
|
|
settings = {
|
|
base_url = "https://bw.tux.rs";
|
|
email = "${email}";
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
bitwarden
|
|
];
|
|
}
|