stockholm/modules/common/krebs-keys.nix

19 lines
365 B
Nix
Raw Normal View History

2015-06-09 22:15:24 +00:00
# alle public keys der krebsminister fuer R in krebs repos
{ config, ... }:
2015-06-18 23:35:37 +00:00
let
inherit (builtins) readFile;
in
2015-06-09 22:15:24 +00:00
with import ../lass/sshkeys.nix {
config.sshKeys.lass.pub = config.sshKeys.lass.pub;
config.sshKeys.uriel.pub = config.sshKeys.uriel.pub;
};
{
imports = [
./sshkeys.nix
];
2015-06-18 23:35:37 +00:00
config.sshKeys.tv.pub = readFile <pubkeys/tv_wu.ssh.pub>;
2015-06-09 22:15:24 +00:00
}