1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00
home-manager/tests/modules/files/target-with-shellvar.nix
2023-05-13 00:09:52 +02:00

12 lines
240 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"}
'';
}