dotfiles/apps
2023-02-26 20:03:39 -05:00
..
default.nix refactor apps and separate disko disks 2023-02-26 19:53:51 -05:00
encrypt-secret.nix move public-keys to root directory 2023-02-20 20:02:21 -05:00
format-root.nix fix disko partition for single disk 2023-02-26 20:03:39 -05:00
help.nix refactor apps and separate disko disks 2023-02-26 19:53:51 -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
neovim.nix refactor apps and separate disko disks 2023-02-26 19:53:51 -05: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
rebuild.nix refactor apps and separate disko disks 2023-02-26 19:53:51 -05: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}
  '');

}