mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
9 lines
230 B
Nix
9 lines
230 B
Nix
{
|
|
home.file."$HOME/$FOO/bar baz".text = "blah";
|
|
|
|
nmt.script = ''
|
|
assertFileExists 'home-files/$HOME/$FOO/bar baz';
|
|
assertFileContent 'home-files/$HOME/$FOO/bar baz' \
|
|
${builtins.toFile "expected" "blah"}
|
|
'';
|
|
}
|