forked from aylac.top/nixcfg
this repo has no description
1_: { 2 perSystem = { 3 config, 4 lib, 5 pkgs, 6 ... 7 }: { 8 packages = { 9 gen-files = pkgs.writeShellApplication { 10 name = "gen-files"; 11 12 text = '' 13 ${lib.getExe config.files.writer.drv} 14 ''; 15 }; 16 }; 17 }; 18}