feat(wpcarro/ssh): Support iPhone SSH key
For termius access Change-Id: Ic91b80bfc8deb816b5a7634ca5e74bb026729067 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6542 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
This commit is contained in:
parent
f9007c6a47
commit
c0a2a13c84
3 changed files with 18 additions and 12 deletions
|
@ -4,6 +4,7 @@
|
|||
rec {
|
||||
ava = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB/5Fuo7wi8rNXVXgNaCK2X6ePCh9LQs/9h7Tj6UeXrl wpcarro@ava";
|
||||
diogenes = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILFDRfpNXDxQuTJAqVg8+Mm/hOfE5VAJP+Lpw9kA5cDG wpcarro@gmail.com";
|
||||
iphone = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEU1tsRQ/cMxi9Hd7Xo+YpiWB5i6qx24EJLCEFBK4q4W wpcarro@iphone";
|
||||
marcus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkNQJBXekuSzZJ8+gxT+V1+eXTm3hYsfigllr/ARXkf wpcarro@gmail.com";
|
||||
nathan = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP2NjuP722VUgpSu5bVUPTfdVNPO8fSW0Jlas8L4up13 bill@nathan";
|
||||
tarasco = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOh+wG4f7tI0IwGyF2sLi5mPlh3JKE7KqV2ab0tlcL36 wpcarro@tarasco";
|
||||
|
@ -11,6 +12,7 @@ rec {
|
|||
all = [
|
||||
ava
|
||||
diogenes
|
||||
iphone
|
||||
marcus
|
||||
nathan
|
||||
tarasco
|
||||
|
|
|
@ -81,9 +81,10 @@ in
|
|||
hardware.pulseaudio.enable = true;
|
||||
|
||||
users.mutableUsers = true;
|
||||
users.users.root.openssh.authorizedKeys.keys = [
|
||||
wpcarro.keys.nathan
|
||||
wpcarro.keys.tarasco
|
||||
users.users.root.openssh.authorizedKeys.keys = with wpcarro.keys; [
|
||||
iphone
|
||||
nathan
|
||||
tarasco
|
||||
];
|
||||
users.users.wpcarro = {
|
||||
isNormalUser = true;
|
||||
|
@ -93,9 +94,10 @@ in
|
|||
"docker"
|
||||
];
|
||||
shell = pkgs.fish;
|
||||
openssh.authorizedKeys.keys = [
|
||||
wpcarro.keys.nathan
|
||||
wpcarro.keys.tarasco
|
||||
openssh.authorizedKeys.keys = with wpcarro.keys; [
|
||||
iphone
|
||||
nathan
|
||||
tarasco
|
||||
];
|
||||
};
|
||||
users.extraGroups.vboxusers.members = [ "wpcarro" ];
|
||||
|
|
|
@ -77,9 +77,10 @@ in
|
|||
hardware.pulseaudio.enable = true;
|
||||
|
||||
users.mutableUsers = true;
|
||||
users.users.root.openssh.authorizedKeys.keys = [
|
||||
wpcarro.keys.nathan
|
||||
wpcarro.keys.ava
|
||||
users.users.root.openssh.authorizedKeys.keys = with wpcarro.keys; [
|
||||
ava
|
||||
iphone
|
||||
nathan
|
||||
];
|
||||
users.users.wpcarro = {
|
||||
isNormalUser = true;
|
||||
|
@ -89,9 +90,10 @@ in
|
|||
"docker"
|
||||
];
|
||||
shell = pkgs.fish;
|
||||
openssh.authorizedKeys.keys = [
|
||||
wpcarro.keys.nathan
|
||||
wpcarro.keys.ava
|
||||
openssh.authorizedKeys.keys = with wpcarro.keys; [
|
||||
ava
|
||||
iphone
|
||||
nathan
|
||||
];
|
||||
};
|
||||
users.extraGroups.vboxusers.members = [ "wpcarro" ];
|
||||
|
|
Loading…
Reference in a new issue