nixfiles/home/base/nya.nix
ChaotiCryptidz be5d0ed6af
b
2022-08-12 17:34:00 +01:00

10 lines
149 B
Nix

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