mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
16 lines
301 B
Nix
16 lines
301 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
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"
|
||
|
'';
|
||
|
};
|
||
|
}
|