2019-03-19 23:00:17 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
2020-02-02 00:39:17 +01:00
|
|
|
programs.ssh = { enable = true; };
|
2019-03-19 23:00:17 +01:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
home.file.assertions.text = builtins.toJSON
|
|
|
|
(map (a: a.message) (filter (a: !a.assertion) config.assertions));
|
2019-08-20 13:20:39 +02:00
|
|
|
|
2019-03-19 23:00:17 +01:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.ssh/config
|
|
|
|
assertFileContent home-files/.ssh/config ${./default-config-expected.conf}
|
2019-08-20 13:20:39 +02:00
|
|
|
assertFileContent home-files/assertions ${./no-assertions.json}
|
2019-03-19 23:00:17 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|