mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
21 lines
316 B
Nix
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"
|
|
'';
|
|
};
|
|
}
|