dotfiles/apps
2023-02-20 20:37:37 -05:00
..
default.nix move nixos and darwin back into modules dir 2023-02-20 20:37:37 -05:00
encrypt-secret.nix move public-keys to root directory 2023-02-20 20:02:21 -05:00
installer.nix update installer with gum, add more charm stuff 2022-09-25 04:19:46 +00:00
loadkey.nix add helper statements for loadkeys app 2022-10-03 12:32:09 +00:00
netdata-cloud.nix switch to netdata cloud 2022-10-10 19:22:39 +00:00
readme.nix page readme app 2022-12-10 15:48:15 -07:00
reencrypt-secrets.nix move public-keys to root directory 2023-02-20 20:02:21 -05:00

{ pkgs, ... }: {

  type = "app";

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

}