75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
14 lines
277 B
Nix
14 lines
277 B
Nix
{ ... }:
|
|
|
|
{
|
|
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}
|
|
'';
|
|
}
|