mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
14 lines
245 B
Nix
14 lines
245 B
Nix
{
|
|
home.file.".hidden".source = ./.hidden;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.hidden;
|
|
assertFileContent home-files/.hidden ${
|
|
builtins.path {
|
|
path = ./.hidden;
|
|
name = "expected";
|
|
}
|
|
}
|
|
'';
|
|
}
|