nixfiles/home/base/nya.nix

10 lines
142 B
Nix
Raw Normal View History

2022-04-11 15:14:07 +01:00
{ lib, ... }: {
2022-07-27 16:47:49 +01:00
home.file = lib.mkMerge (map (x: {
"${x}" = {
text = ''
nyaa!~
'';
};
}) [ "girl" "boy" ]);
2022-04-11 15:14:07 +01:00
}