mirror of
https://github.com/nix-community/home-manager
synced 2024-11-16 08:09:45 +01:00
7591c8041d
`rbw` is a stand-alone Bitwarden client, which makes use of a daemon to cache your password and manage state. Its configuration can be managed by `home-manager` or not, leaving the user free to configure it through `rbw config`.
12 lines
316 B
Nix
12 lines
316 B
Nix
self: super: {
|
|
rbw = self.writeScriptBin "dummy-rbw" "";
|
|
pinentry = {
|
|
gnome3 = self.writeScriptBin "pinentry-gnome3" "" // {
|
|
outPath = "@pinentry-gnome3@";
|
|
};
|
|
gtk2 = self.writeScriptBin "pinentry-gtk2" "" // {
|
|
outPath = "@pinentry-gtk2@";
|
|
};
|
|
flavors = [ "gnome3" "gtk2" ];
|
|
};
|
|
}
|