1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 10:47:02 +00:00
home-manager/tests/modules/programs/khard/empty_config.nix

18 lines
308 B
Nix
Raw Normal View History

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