Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 4d38205

Browse files
committed
feat(gpg): new subkey
1 parent 75e680f commit 4d38205

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

home-manager/shell/git.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
userName = "Jose Storopoli";
88
userEmail = "jose@storopoli.io";
99
signing = {
10-
key = "0x01BE853A206518CC!";
10+
# let git figure out the key
11+
key = null;
12+
#key = "0x01BE853A206518CC!";
1113
signByDefault = true;
1214
};
1315
ignores = [

home-manager/shell/gpg.nix

+1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@
2626
};
2727
home.file.".gnupg/sshcontrol".text = ''
2828
DF0AA528163BDAADD3D9FD68051A12C04A4533B4
29+
DF250661CC8CE773D4349D7E5412066FC300FE02
2930
'';
3031
}

linux/ssh-server.nix

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
# Authorized Keys
3737
users.users."user".openssh.authorizedKeys.keys = [
3838
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKU4O0J7gdU1+0/IoVZUtajfmWGGNmA3TFXTsbnQfpwt openpgp:0xC116F831"
39+
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINJxv4Hr9OPL1ZMx+jVm2vp4kjJIJVGVIkpnfBO3+Zr8 openpgp:0x4849012F"
3940
];
4041

4142
# Mosh

0 commit comments

Comments
 (0)