26 lines
552 B
Nix
26 lines
552 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
qois.static-page.pages = {
|
|
"fabianhauser.ch" = {
|
|
domainAliases = [
|
|
"www.fabianhauser.ch"
|
|
"fabianhauser.nl"
|
|
"www.fabianhauser.nl"
|
|
"www.fh2.ch"
|
|
"fh2.ch"
|
|
];
|
|
authorizedKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFsSCoClNpgW7x6YngP/CEFbyR8GEJ3V8NdUFvZ/6lj6 ci@git.qo.is"
|
|
];
|
|
};
|
|
"docs-ops.qo.is".authorizedKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBS65v7n5ozOUjYGuO/dgLC9C5MUGL5kTnQnvWAYP5B3 ci@git.qo.is"
|
|
];
|
|
};
|
|
}
|