mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
13 lines
204 B
Nix
13 lines
204 B
Nix
{ ... }:
|
|
|
|
{
|
|
home.file."executable" = {
|
|
text = "";
|
|
executable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/executable
|
|
assertFileIsExecutable home-files/executable;
|
|
'';
|
|
}
|