dotfiles/apps/readme.nix
2022-08-07 19:16:51 -06:00

10 lines
170 B
Nix

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