mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
14 lines
318 B
Nix
14 lines
318 B
Nix
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
enableDefaultConfig = false;
|
|
extraConfig = ''
|
|
MyExtraOption no
|
|
AnotherOption 3
|
|
'';
|
|
};
|
|
|
|
test.asserts.assertions.expected = [
|
|
''Cannot set `programs.ssh.extraConfig` if `programs.ssh.matchBlocks."*"` (default host config) is not declared.''
|
|
];
|
|
}
|