1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/khard/multiple_accounts.nix

24 lines
431 B
Nix
Raw Normal View History

2023-07-03 22:06:38 +02:00
{
accounts.contact = {
basePath = ".contacts";
accounts.test1 = {
local.type = "filesystem";
khard.enable = true;
};
accounts.test2 = {
local.type = "filesystem";
khard.enable = true;
};
};
programs.khard.enable = true;
test.stubs.khard = { };
nmt.script = ''
assertFileContent \
home-files/.config/khard/khard.conf \
${./multiple_accounts_expected}
'';
}