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

with lib;

{
  config = {
    home.file.".hidden".source = ./.hidden;

    nmt.script = ''
      assertFileExists home-files/.hidden;
      assertFileContent home-files/.hidden ${
        builtins.path { path = ./.hidden; name = "expected"; }
      }
    '';
  };
}