Files
home-manager/tests/modules/programs/ssh/includes.nix
2026-04-13 22:02:40 -05:00

18 lines
329 B
Nix

{
config = {
programs.ssh = {
enable = true;
enableDefaultConfig = false;
includes = [
"config.d/*"
"other/dir"
];
};
nmt.script = ''
assertFileExists home-files/.ssh/config
assertFileContains home-files/.ssh/config "Include config.d/* other/dir"
'';
};
}