10 lines
149 B
Nix
10 lines
149 B
Nix
{ lib, ... }: {
|
|
home.file = lib.mkMerge (map (x: {
|
|
"${x}" = {
|
|
text = ''
|
|
nyaa!~
|
|
'';
|
|
};
|
|
}) [ "girl" "boy" "enby" ]);
|
|
}
|