wip: add julia server with wordpress
This commit is contained in:
parent
3efa686d83
commit
e831b0f402
8 changed files with 198 additions and 2 deletions
20
hosts/ext-julia/default.nix
Normal file
20
hosts/ext-julia/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue