aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/files/text.nix
blob: 6fc9a26fcb4390a0e22f854122e9e3c58a7a1194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, lib, ... }:

with lib;

{
  config = {
    home.file."using-text".text = ''
      This is the
      expected text.
    '';

    nmt.script = ''
      assertFileExists home-files/using-text
      assertFileIsNotExecutable home-files/using-text
      assertFileContent home-files/using-text ${./text-expected.txt}
    '';
  };
}