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";
createHome = true;
useDefaultShell = true;
openssh.authorizedKeys.keys = map readFile [
../../Zpubkeys/mv_vod.ssh.pub
openssh.authorizedKeys.keys = [
config.krebs.users.mv.pubkey
];
};
};

View File

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