21 lines
320 B
Nix
21 lines
320 B
Nix
{ config, ... }:
|
|
{
|
|
# text.readme = {
|
|
#
|
|
# };
|
|
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
files.files = [
|
|
{
|
|
path_ = "README.md";
|
|
drv =
|
|
pkgs.writeText "README.md" # config.text.readme
|
|
''
|
|
test README
|
|
'';
|
|
}
|
|
];
|
|
};
|
|
}
|