nixfiles/home/base/nya.nix

5 lines
114 B
Nix
Raw Normal View History

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