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

{ pkgs, ... }: {

  type = "app";

  program = builtins.toString (pkgs.writeShellScript "readme" ''
    #!${pkgs.stdenv.shell}

    ${pkgs.glow}/bin/glow ${builtins.toString ../README.md}
  '');

}