mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
23 lines
421 B
Nix
23 lines
421 B
Nix
|
{
|
||
|
accounts.contact = {
|
||
|
basePath = "/home/user/who/likes///";
|
||
|
accounts.forward = {
|
||
|
local.type = "filesystem";
|
||
|
khard = {
|
||
|
enable = true;
|
||
|
defaultCollection = "////slashes//a/lot";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
programs.khard.enable = true;
|
||
|
|
||
|
test.stubs.khard = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/khard/khard.conf \
|
||
|
${./dirty_path_expected}
|
||
|
'';
|
||
|
}
|