tv: source pubkeys from registry

This commit is contained in:
tv 2015-07-25 00:44:51 +02:00
parent 14250e66a7
commit a489c7be84
2 changed files with 6 additions and 6 deletions

View File

@ -120,8 +120,8 @@ in
home = "/home/mv"; home = "/home/mv";
createHome = true; createHome = true;
useDefaultShell = true; useDefaultShell = true;
openssh.authorizedKeys.keys = map readFile [ openssh.authorizedKeys.keys = [
../../Zpubkeys/mv_vod.ssh.pub config.krebs.users.mv.pubkey
]; ];
}; };
}; };

View File

@ -24,8 +24,8 @@ in
{ {
users.extraUsers = { users.extraUsers = {
root = { root = {
openssh.authorizedKeys.keys = map readFile [ openssh.authorizedKeys.keys = [
../../Zpubkeys/tv_wu.ssh.pub config.krebs.users.tv.pubkey
]; ];
}; };
tv = { tv = {
@ -39,8 +39,8 @@ in
"video" "video"
"wheel" "wheel"
]; ];
openssh.authorizedKeys.keys = map readFile [ openssh.authorizedKeys.keys = [
../../Zpubkeys/tv_wu.ssh.pub config.krebs.users.tv.pubkey
]; ];
}; };
}; };