1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00
home-manager/tests/modules/programs/rbw/simple-settings.nix
Bruno BELANYI 7591c8041d
rbw: add module (#1998)
`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`.
2021-06-05 18:09:02 -06:00

34 lines
719 B
Nix

{ pkgs, ... }:
let
inherit (pkgs.stdenv.hostPlatform) isDarwin;
path = if isDarwin then
"Library/Application Support/rbw/config.json"
else
".config/rbw/config.json";
expected = pkgs.writeText "rbw-expected.json" ''
{
"base_url": null,
"email": "name@example.com",
"identity_url": null,
"lock_timeout": 3600,
"pinentry": "@pinentry-gtk2@/bin/pinentry"
}
'';
in {
config = {
programs.rbw = {
enable = true;
settings = { email = "name@example.com"; };
};
nixpkgs.overlays = [ (import ./overlay.nix) ];
nmt.script = ''
assertFileExists home-files/${path}
assertFileContent home-files/${path} '${expected}'
'';
};
}