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`.
This commit is contained in:
parent
5060262b79
commit
7591c8041d
10 changed files with 236 additions and 0 deletions
5
tests/modules/programs/rbw/default.nix
Normal file
5
tests/modules/programs/rbw/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
rbw-empty-settings = ./empty-settings.nix;
|
||||
rbw-simple-settings = ./simple-settings.nix;
|
||||
rbw-settings = ./settings.nix;
|
||||
}
|
||||
19
tests/modules/programs/rbw/empty-settings.nix
Normal file
19
tests/modules/programs/rbw/empty-settings.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
||||
|
||||
path = if isDarwin then
|
||||
"Library/Application Support/rbw/config.json"
|
||||
else
|
||||
".config/rbw/config.json";
|
||||
in {
|
||||
config = {
|
||||
programs.rbw.enable = true;
|
||||
|
||||
nixpkgs.overlays = [ (import ./overlay.nix) ];
|
||||
|
||||
nmt.script = ''
|
||||
assertPathNotExists home-files/${path}
|
||||
'';
|
||||
};
|
||||
}
|
||||
12
tests/modules/programs/rbw/overlay.nix
Normal file
12
tests/modules/programs/rbw/overlay.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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" ];
|
||||
};
|
||||
}
|
||||
39
tests/modules/programs/rbw/settings.nix
Normal file
39
tests/modules/programs/rbw/settings.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{ 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": "bitwarden.example.com",
|
||||
"email": "name@example.com",
|
||||
"identity_url": "identity.example.com",
|
||||
"lock_timeout": 300,
|
||||
"pinentry": "@pinentry-gnome3@/bin/pinentry"
|
||||
}
|
||||
'';
|
||||
in {
|
||||
config = {
|
||||
programs.rbw = {
|
||||
enable = true;
|
||||
settings = {
|
||||
email = "name@example.com";
|
||||
base_url = "bitwarden.example.com";
|
||||
identity_url = "identity.example.com";
|
||||
lock_timeout = 300;
|
||||
pinentry = "gnome3";
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [ (import ./overlay.nix) ];
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/${path}
|
||||
assertFileContent home-files/${path} '${expected}'
|
||||
'';
|
||||
};
|
||||
}
|
||||
33
tests/modules/programs/rbw/simple-settings.nix
Normal file
33
tests/modules/programs/rbw/simple-settings.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ 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}'
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue