{
perSystem =
{
pkgs,
...
}:
{
files = {
files = [
{
path_ = "readme.md";
drv =
pkgs.writeText "README.md"
# markdown
''
hello world
'';
}
];
};
};
}what i do wrong? |
Answered by
mightyiam
May 13, 2026
Replies: 1 comment 2 replies
|
i made |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the check failing and showing you the difference between the expected file content and the actual file content. Use the writer that is provided as an option value to write all the files.