mirror of
https://gerrit.hackerspace.pl/hscloud
synced 2025-03-22 13:14:52 +00:00
hswaw/sound: add q3k's key
Change-Id: Ic1ee340cb875cb0858af7738d27c3c5b1f13a738 Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1523 Reviewed-by: informatic <informatic@hackerspace.pl>
This commit is contained in:
parent
c1f372561a
commit
2e632b9247
1 changed files with 3 additions and 2 deletions
|
@ -1,10 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
hw = builtins.fromJSON (builtins.readFile ./hw.json);
|
||||
ssh-keys = {
|
||||
vuko = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFhaCaC/CVYv6hphqmEdKaPrIn+Q946+myvL9SSnzFZk vuko@eagle";
|
||||
informatic = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDoKB2p/gFaKthQNXeQvSLzhOlLSq3vjVL3AEOBTMXGH informatic@atuin";
|
||||
q3k = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG599UildOrAq+LIOQjKqtGMwjgjIxozI1jtQQRKHtCP q3k@mimeomia";
|
||||
};
|
||||
networks = {
|
||||
lan = {
|
||||
|
@ -232,7 +233,7 @@ in {
|
|||
};
|
||||
|
||||
# TODO extract ssh keys synchronization from customs and add it here
|
||||
users.users.root.openssh.authorizedKeys.keys = [ ssh-keys.vuko ssh-keys.informatic ];
|
||||
users.users.root.openssh.authorizedKeys.keys = lib.mapAttrsToList (_: v: v) ssh-keys;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
system-vim tcpdump htop nmon tmux git file procps parted dmidecode ack utillinux
|
||||
|
|
Loading…
Add table
Reference in a new issue