mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
10 lines
178 B
Nix
10 lines
178 B
Nix
{ pkgs, ... }: {
|
|
|
|
type = "app";
|
|
|
|
program = builtins.toString (pkgs.writeShellScript "readme" ''
|
|
${pkgs.glow}/bin/glow --pager ${builtins.toString ../README.md}
|
|
'');
|
|
|
|
}
|