mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
17 lines
267 B
Nix
17 lines
267 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.ssh = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.ssh/config
|
||
|
assertFileContent home-files/.ssh/config ${./default-config-expected.conf}
|
||
|
'';
|
||
|
};
|
||
|
}
|