121 lines
3.1 KiB
Nix
121 lines
3.1 KiB
Nix
{ config, lib, inputs, ... }: let
|
|
sshKeys = import ../../crypto/ssh-keys.nix;
|
|
in {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../common/base.nix
|
|
|
|
];
|
|
|
|
networking = {
|
|
hostName = "vulpecula";
|
|
|
|
firewall = {
|
|
allowedTCPPorts = [
|
|
# 8080 # ?
|
|
80
|
|
443
|
|
22
|
|
# 8008 # ssb
|
|
# 12345 # tildefriends
|
|
# 13378 # audiobookshelf
|
|
];
|
|
allowedUDPPorts = [
|
|
# 8080 # ?
|
|
];
|
|
};
|
|
};
|
|
|
|
boot = {
|
|
loader.systemd-boot.enable = lib.mkForce false;
|
|
|
|
# efi.canTouchEfiVariables = true;
|
|
|
|
initrd = {
|
|
enable = lib.mkForce true;
|
|
systemd.enable = lib.mkForce false;
|
|
};
|
|
};
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
users.users.tasia = {
|
|
isNormalUser = true;
|
|
description = "Tasia";
|
|
extraGroups = ["networkmanager" "wheel" "dialout"];
|
|
initialPassword = "correcthorsebatterystaple";
|
|
openssh.authorizedKeys.keys = [
|
|
sshKeys.tasia.yaseen
|
|
];
|
|
};
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedProxySettings = true;
|
|
recommendedTlsSettings = true;
|
|
virtualHosts."vulpecula.zone" = {
|
|
addSSL = true;
|
|
enableACME = true;
|
|
root = inputs.vulpecula-zone.packages.x86_64-linux.default;
|
|
};
|
|
virtualHosts."tasiaiso.vulpecula.zone" = {
|
|
addSSL = true;
|
|
enableACME = true;
|
|
root = inputs.tasiaiso-vulpecula-zone.packages.x86_64-linux.default;
|
|
};
|
|
virtualHosts."git.vulpecula.zone" = {
|
|
addSSL = true;
|
|
enableACME = true;
|
|
locations."/".proxyPass = "http://localhost:62101";
|
|
# ${toString config.services.forgejo.settings.server.HTTP_PORT}
|
|
};
|
|
|
|
|
|
};
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "tasiaiso@proton.me";
|
|
};
|
|
|
|
services.forgejo = {
|
|
enable = true;
|
|
database.type = "postgres";
|
|
# Enable support for Git Large File Storage
|
|
lfs.enable = true;
|
|
settings = {
|
|
server = {
|
|
DOMAIN = "git.vulpecula.zone";
|
|
# You need to specify this to remove the port from URLs in the web UI.
|
|
ROOT_URL = "https://git.vulpecula.zone/";
|
|
HTTP_PORT = 62101;
|
|
};
|
|
# You can temporarily allow registration to create an admin user.
|
|
service.DISABLE_REGISTRATION = true;
|
|
# Add support for actions, based on act: https://github.com/nektos/act
|
|
# actions = {
|
|
# ENABLED = true;
|
|
# DEFAULT_ACTIONS_URL = "github";
|
|
# };
|
|
# Sending emails is completely optional
|
|
# You can send a test email from the web UI at:
|
|
# Profile Picture > Site Administration > Configuration > Mailer Configuration
|
|
# mailer = {
|
|
# ENABLED = true;
|
|
# SMTP_ADDR = "mail.example.com";
|
|
# FROM = "noreply@${srv.DOMAIN}";
|
|
# USER = "noreply@${srv.DOMAIN}";
|
|
# };
|
|
};
|
|
# mailerPasswordFile = config.age.secrets.forgejo-mailer-password.path;
|
|
};
|
|
|
|
|
|
boot.tmp.cleanOnBoot = true;
|
|
zramSwap.enable = true;
|
|
networking.domain = "";
|
|
services.openssh.enable = true;
|
|
# users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLyDLtqUhEQwIsPx0XgQ9OJb2+XxL+2ra4goNJEgwf0 tasia@yaseen'' ];
|
|
system.stateVersion = "24.05";
|
|
}
|