1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-02-21 13:22:03 +00:00
2024-04-20 09:42:06 -04:00

12 lines
189 B
Nix

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