mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-30 22:21:02 +01:00
31 lines
613 B
Nix
31 lines
613 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 = builtins.toFile "rbw-expected.json" ''
|
|
{
|
|
"base_url": null,
|
|
"email": "name@example.com",
|
|
"identity_url": null,
|
|
"lock_timeout": 3600,
|
|
"pinentry": null
|
|
}
|
|
'';
|
|
in
|
|
{
|
|
programs.rbw = {
|
|
enable = true;
|
|
settings = {
|
|
email = "name@example.com";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/${path}
|
|
assertFileContent home-files/${path} '${expected}'
|
|
'';
|
|
}
|