aboutsummaryrefslogtreecommitdiff
path: root/tests/modules/programs/ssh/default-config.nix
blob: 266bc9d1f5d532f80b9966adb3ea35f54bcb200d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    programs.ssh = {
      enable = true;
    };

    home.file.assertions.text =
      builtins.toJSON
      (map (a: a.message)
      (filter (a: !a.assertion)
        config.assertions));

    nmt.script = ''
      assertFileExists home-files/.ssh/config
      assertFileContent home-files/.ssh/config ${./default-config-expected.conf}
      assertFileContent home-files/assertions ${./no-assertions.json}
    '';
  };
}