wip: add julia server with wordpress

This commit is contained in:
Ranomier 2025-05-13 19:02:56 +02:00
parent 3efa686d83
commit e831b0f402
8 changed files with 198 additions and 2 deletions

View file

@ -0,0 +1,20 @@
{config, pkgs, ...}:{
imports = [
./boot.nix
./hardware-configuration.nix
((import ./wordpress.nix) {config=config; pkgs=pkgs; siteName="shop.kiezpalme.de"; port=80;})
../../modules/sec_auth/ssh-server.nix
../../system_profiles/server.nix
];
services.openssh.ports = [11522];
users = let
username = "root";
in {
users."${username}".openssh.authorizedKeys.keyFiles = [
../../certificates/id_ed25519_ext-julia.pub
];
};
}