1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00
home-manager/tests/modules/programs/ssh/default-config.nix

19 lines
449 B
Nix
Raw Normal View History

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-03-19 23:00:17 +01:00
nmt.script = ''
assertFileExists home-files/.ssh/config
assertFileContent home-files/.ssh/config ${./default-config-expected.conf}
assertFileContent home-files/assertions ${./no-assertions.json}
2019-03-19 23:00:17 +01:00
'';
};
}