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-05-07 10:03:21 -05:00

21 lines
316 B
Nix

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