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:
William Carroll 2022-09-12 10:02:51 -07:00 committed by clbot
parent f9007c6a47
commit c0a2a13c84
3 changed files with 18 additions and 12 deletions

View file

@ -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" ];

View file

@ -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" ];