Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
21 lines
563 B
Nix
21 lines
563 B
Nix
# SPDX-FileCopyrightText: 2023-2024 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
sbruder.static-webserver.vhosts = {
|
|
"maggus.bayern".user = {
|
|
name = "maggus";
|
|
keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAWGXaMijpnm3RSH/PIVxkBRDIi1f5nMW/aS26g3b71M nils"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJEF8o2ezSEXwWoAcdoeJs+wsZM/u8x+vtRNU3FXOMIT nils"
|
|
] ++ config.sbruder.pubkeys.trustedKeys;
|
|
};
|
|
"arbeitskampf.work".user = {
|
|
name = "arbeitskampf";
|
|
};
|
|
};
|
|
}
|