Skip to content

Commit

Permalink
fix: use gh package rather than home-manager module
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsgruk committed Jan 2, 2024
1 parent f8bb4ca commit aca2841
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions home/common/shell/git.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_: {
{ pkgs, ... }: {

home.file.".config/git/allowed_signers".text = ''
jon@sgrs.uk sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIB9bIEMgZVBCDxBWQ4m4hQP6ZZp0P3TfzjzcgUOdbYDLAAAABHNzaDo= YK5C
Expand All @@ -7,14 +7,9 @@ _: {
jon.seager@canonical.com sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIBC8cs1B64XqEswY5pART6yERbjUMB7RdQdT38dgkZT6AAAABHNzaDo= YK5
'';

programs = {
gh = {
enable = true;
settings = {
git_protocol = "ssh";
};
};
home.packages = with pkgs; [ gh ];

programs = {
git = {
enable = true;

Expand Down

0 comments on commit aca2841

Please sign in to comment.