mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
15 lines
301 B
Nix
15 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"
|
|
'';
|
|
};
|
|
}
|