1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/ssh/includes.nix
2025-08-26 17:12:13 -05:00

22 lines
351 B
Nix

{
config,
...
}:
{
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"
'';
};
}