5 lines
114 B
Nix
5 lines
114 B
Nix
|
{ lib, ... }: {
|
||
|
home.file =
|
||
|
lib.mkMerge (map (x: { "${x}" = { text = "nyaa!~\n"; }; }) [ "girl" "boy" ]);
|
||
|
}
|