nixos/lib/common: update SSH authorized_keys
This commit is contained in:
parent
72ae247e4a
commit
658c98934b
6 changed files with 11 additions and 2 deletions
|
@ -61,6 +61,12 @@ in
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = [ "wheel" ];
|
||||||
hashedPassword = secrets.passwordHashes.lukegb;
|
hashedPassword = secrets.passwordHashes.lukegb;
|
||||||
|
openssh.authorizedKeys.keyFiles = [
|
||||||
|
../../secrets/lukegb_totoro.pub
|
||||||
|
../../secrets/lukegb_termius.pub
|
||||||
|
../../secrets/lukegb_porcorosso_win.pub
|
||||||
|
../../secrets/lukegb_porcorosso_wsl.pub
|
||||||
|
];
|
||||||
};
|
};
|
||||||
deployer = {
|
deployer = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
# SPDX-FileCopyrightText: 2020 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
||||||
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
1
ops/secrets/lukegb_porcorosso_win.pub
Normal file
1
ops/secrets/lukegb_porcorosso_win.pub
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBhuv1j7GIU58cDYODfShn3c7yMZHjI9M30YXSnEI8L6 PORCOROSSO-windows
|
1
ops/secrets/lukegb_porcorosso_wsl.pub
Normal file
1
ops/secrets/lukegb_porcorosso_wsl.pub
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMhQ3yjf59eQjOfVXzXz5u8BS5c6hdL1yY8GqccaIjx3 porcorosso-wsl2
|
1
ops/secrets/lukegb_termius.pub
Normal file
1
ops/secrets/lukegb_termius.pub
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINytpHct7PLdLNp6MoaOPP7ccBPUQKymVNMqix//Wt1f termius
|
1
ops/secrets/lukegb_totoro.pub
Normal file
1
ops/secrets/lukegb_totoro.pub
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKuJTXRhLCePkOiM/DJaPcNqQtcccX5kYq/FJU+RXtxp lukegb@totoro
|
Loading…
Reference in a new issue