dotfiles/apps/readme.nix
2022-08-07 18:32:11 -06:00

12 lines
198 B
Nix

{ pkgs, ... }: {
type = "app";
program = builtins.toString (pkgs.writeShellScript "readme" ''
#!${pkgs.stdenv.shell}
${pkgs.glow}/bin/glow ${builtins.toString ../README.md}
'');
}