nix-config/home/gburd/features/cli/gh.nix
2023-09-19 13:05:08 -04:00

15 lines
278 B
Nix

{ pkgs, ... }:
{
programs.gh = {
enable = true;
extensions = with pkgs; [ gh-markdown-preview ];
settings = {
git_protocol = "ssh";
prompt = "enabled";
};
};
home.persistence = {
"/persist/home/gburd".directories = [ ".config/gh" ];
};
}