blob: 5e349338d312e83c541d2b7c9e34239e5516fcd2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | # alle public keys der krebsminister fuer R in krebs repos
{ config, ... }:
let
  inherit (builtins) readFile;
in
with import ../lass/sshkeys.nix {
  config.sshKeys.lass.pub = config.sshKeys.lass.pub;
  config.sshKeys.uriel.pub = config.sshKeys.uriel.pub;
  };
{
  imports = [
    ./sshkeys.nix
  ];
  config.sshKeys.tv.pub = readFile <pubkeys/tv_wu.ssh.pub>;
}
 |