dotfiles/apps/readme.nix

10 lines
170 B
Nix
Raw Normal View History

2022-08-08 00:32:11 +00:00
{ pkgs, ... }: {
type = "app";
program = builtins.toString (pkgs.writeShellScript "readme" ''
${pkgs.glow}/bin/glow ${builtins.toString ../README.md}
'');
}