mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 11:31:36 +01:00
85 lines
1.8 KiB
Nix
85 lines
1.8 KiB
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../shared.nix
|
|
];
|
|
|
|
nix.settings.trusted-users = [ "thiloho" ];
|
|
|
|
networking = {
|
|
hostName = "server";
|
|
firewall = {
|
|
allowedTCPPorts = [ 80 443 25565 ];
|
|
};
|
|
};
|
|
|
|
services = {
|
|
openssh = {
|
|
enable = true;
|
|
settings.PasswordAuthentication = false;
|
|
};
|
|
minecraft-server = {
|
|
enable = true;
|
|
eula = true;
|
|
declarative = true;
|
|
openFirewall = true;
|
|
whitelist = {
|
|
thilo_ho = "4e4d744d-7748-46bc-add8-b3e8ca3b4cf5";
|
|
};
|
|
serverProperties = {
|
|
difficulty = 3;
|
|
max-players = 10;
|
|
motd = "Minecraft server of Thilo.";
|
|
white-list = true;
|
|
};
|
|
};
|
|
nginx = {
|
|
enable = true;
|
|
virtualHosts = {
|
|
"thilohohlt.com" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
root = inputs.website;
|
|
};
|
|
"aurora.thilohohlt.com" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
root = inputs.aurora-blog-template.packages.${pkgs.system}.default;
|
|
};
|
|
};
|
|
};
|
|
nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud27;
|
|
hostName = "cloud.thilohohlt.com";
|
|
database.createLocally = true;
|
|
config = {
|
|
dbtype = "pgsql";
|
|
adminpassFile = "/root/nextcloud-database-password";
|
|
};
|
|
};
|
|
};
|
|
|
|
security = {
|
|
acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "thilo.hohlt@tutanota.com";
|
|
};
|
|
sudo.extraConfig = ''
|
|
%wheel ALL=(ALL) NOPASSWD: ALL, SETENV: ALL
|
|
'';
|
|
};
|
|
|
|
users.users.thiloho.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP8j7z4RBSjoBcB5btwGodYu5J/Yprng8oBhy47iXWq+ thiloho@pc"
|
|
];
|
|
|
|
home-manager.users.thiloho = { pkgs, lib, ... }: {
|
|
home.stateVersion = "23.05";
|
|
};
|
|
system.stateVersion = "23.05";
|
|
}
|
|
|