2021-01-23 17:16:48 +00:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
2022-12-11 13:07:19 +00:00
|
|
|
|
#./amanuensis.nix
|
|
|
|
|
#./redstring.nix
|
2021-01-23 17:16:48 +00:00
|
|
|
|
./catacomb.nix
|
|
|
|
|
./gitea.nix
|
2022-11-27 01:38:18 +00:00
|
|
|
|
./inquisitor.nix
|
2021-01-23 17:16:48 +00:00
|
|
|
|
];
|
|
|
|
|
|
2023-08-02 17:45:22 +00:00
|
|
|
|
beatific.hostName = "empyrean";
|
2023-08-02 18:11:53 +00:00
|
|
|
|
beatific.isLighthouse = true;
|
2023-08-02 17:45:22 +00:00
|
|
|
|
|
2021-01-23 17:16:48 +00:00
|
|
|
|
# Use the GRUB 2 boot loader.
|
|
|
|
|
boot.loader.grub = {
|
|
|
|
|
enable = true;
|
|
|
|
|
device = "/dev/xvda";
|
|
|
|
|
extraConfig = "serial --unit=0 --speed=115200 ; terminal_input serial console ; terminal_output serial console";
|
|
|
|
|
};
|
|
|
|
|
boot.kernelParams = ["console=ttyS0"];
|
|
|
|
|
|
2022-11-27 01:40:04 +00:00
|
|
|
|
nix = {
|
|
|
|
|
package = pkgs.nixFlakes;
|
2022-12-11 00:00:55 +00:00
|
|
|
|
settings.max-jobs = 2;
|
2022-11-27 01:40:04 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ { device = "/swap"; size = 1024; } ];
|
2022-01-08 00:06:07 +00:00
|
|
|
|
|
2021-01-23 17:16:48 +00:00
|
|
|
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
|
|
|
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
|
|
|
|
# replicates the default behaviour.
|
|
|
|
|
networking.useDHCP = false;
|
|
|
|
|
networking.interfaces.eth0.useDHCP = true;
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
2023-08-02 17:55:21 +00:00
|
|
|
|
tinc_pre
|
2021-01-23 17:16:48 +00:00
|
|
|
|
gitea
|
|
|
|
|
];
|
|
|
|
|
|
2023-01-10 17:43:25 +00:00
|
|
|
|
services.nginx = let
|
|
|
|
|
static-site = srv-dir: {
|
|
|
|
|
enableACME = true;
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
root = "/srv/${srv-dir}/";
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
access_log /var/log/nginx/access_${srv-dir}.log;
|
|
|
|
|
index index.html;
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
in {
|
2021-01-23 17:16:48 +00:00
|
|
|
|
enable = true;
|
|
|
|
|
recommendedProxySettings = true;
|
|
|
|
|
virtualHosts = {
|
|
|
|
|
# Static pages
|
2023-01-10 17:43:25 +00:00
|
|
|
|
"wedding.ktvb.site" = static-site "wedding.ktvb.site";
|
|
|
|
|
"www.ktvb.site" = static-site "www.ktvb.site";
|
|
|
|
|
"mirror.alogoulogoi.com" = static-site "mirror.alogoulogoi.com";
|
|
|
|
|
"www.alogoulogoi.com" = static-site "www";
|
2023-01-16 05:56:31 +00:00
|
|
|
|
newtab = {
|
|
|
|
|
listen = [ { addr = "10.22.20.1"; port = 80; } ];
|
|
|
|
|
root = "/srv/newtab/";
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
access_log /var/log/nginx/access_newtab.log;
|
|
|
|
|
index index.html;
|
|
|
|
|
'';
|
|
|
|
|
};
|
2021-01-23 17:16:48 +00:00
|
|
|
|
# Deny all other subdomains
|
|
|
|
|
"alogoulogoi.com" = {
|
|
|
|
|
default = true;
|
|
|
|
|
locations."/".return = "444";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
security.acme = {
|
2022-12-11 00:00:55 +00:00
|
|
|
|
defaults.email = "tim.vanbaak+alogoulogoi@gmail.com";
|
2021-01-23 17:16:48 +00:00
|
|
|
|
acceptTerms = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.openssh = {
|
2023-06-09 20:59:09 +00:00
|
|
|
|
settings.PasswordAuthentication = false;
|
|
|
|
|
settings.PermitRootLogin = "prohibit-password";
|
2021-01-23 17:16:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.tinc.networks.beatific = {
|
|
|
|
|
listenAddress = "0.0.0.0";
|
|
|
|
|
chroot = false;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-20 04:35:45 +00:00
|
|
|
|
services.intake = {
|
|
|
|
|
listen = { addr = "10.22.20.1"; port = 5234; };
|
|
|
|
|
users.tvb.enable = true;
|
2023-07-05 12:44:09 +00:00
|
|
|
|
users.tvb.extraPackages = [ pkgs.intakeSources pkgs.openssh ];
|
2023-06-20 04:35:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-23 17:16:48 +00:00
|
|
|
|
networking.firewall = {
|
|
|
|
|
enable = true;
|
|
|
|
|
allowedTCPPorts = [
|
|
|
|
|
80 # http
|
|
|
|
|
443 # https
|
|
|
|
|
655 # tinc
|
2023-06-20 04:35:45 +00:00
|
|
|
|
5234# intake
|
2021-01-23 17:16:48 +00:00
|
|
|
|
];
|
|
|
|
|
allowedUDPPorts = [
|
|
|
|
|
655 # tinc
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
2023-06-09 20:59:09 +00:00
|
|
|
|
system.stateVersion = "23.05"; # Did you read the comment?
|
2021-01-23 17:16:48 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|