1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-30 22:21:02 +01:00
home-manager/tests/modules/programs/rbw/simple-settings.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

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}'
'';
}