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

with lib;

{
  config = {
    home.file."executable" = {
      text = "";
      executable = true;
    };

    nmt.script = ''
      assertFileExists home-files/executable
      assertFileIsExecutable home-files/executable;
    '';
  };
}