mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
18 lines
262 B
Nix
18 lines
262 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
home.file."executable" = {
|
||
|
text = "";
|
||
|
executable = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/executable
|
||
|
assertFileIsExecutable home-files/executable;
|
||
|
'';
|
||
|
};
|
||
|
}
|