2023-12-05 03:36:26 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2021-11-15 10:02:05 +00:00
|
|
|
{
|
|
|
|
imports = [
|
2023-12-12 04:25:06 +00:00
|
|
|
./selfprivacy-module.nix
|
2022-08-26 10:21:05 +00:00
|
|
|
./volumes.nix
|
2021-11-15 10:02:05 +00:00
|
|
|
./users.nix
|
|
|
|
./letsencrypt/acme.nix
|
|
|
|
./letsencrypt/resolve.nix
|
|
|
|
./webserver/nginx.nix
|
|
|
|
./webserver/memcached.nix
|
2023-11-18 15:26:47 +00:00
|
|
|
# ./resources/limits.nix
|
2021-11-15 10:02:05 +00:00
|
|
|
];
|
|
|
|
|
2023-11-20 21:23:28 +00:00
|
|
|
fileSystems."/".options = [ "noatime" ];
|
|
|
|
|
2022-11-04 08:57:00 +00:00
|
|
|
services.redis.servers.sp-api = {
|
|
|
|
enable = true;
|
|
|
|
save = [
|
|
|
|
[
|
|
|
|
30
|
|
|
|
1
|
|
|
|
]
|
|
|
|
[
|
|
|
|
10
|
|
|
|
10
|
|
|
|
]
|
|
|
|
];
|
|
|
|
port = 0;
|
|
|
|
settings = {
|
|
|
|
notify-keyspace-events = "KEA";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-12-11 17:58:12 +00:00
|
|
|
services.do-agent.enable = if config.selfprivacy.server.provider == "digitalocean" then true else false;
|
2022-11-04 08:57:00 +00:00
|
|
|
|
2021-11-15 10:02:05 +00:00
|
|
|
boot.cleanTmpDir = true;
|
|
|
|
networking = {
|
2023-11-16 00:00:11 +00:00
|
|
|
hostName = config.selfprivacy.hostname;
|
2022-02-28 10:59:24 +00:00
|
|
|
usePredictableInterfaceNames = false;
|
2021-11-15 10:02:05 +00:00
|
|
|
firewall = {
|
2022-02-15 12:09:45 +00:00
|
|
|
allowedTCPPorts = lib.mkForce [ 22 25 80 143 443 465 587 993 4443 8443 ];
|
|
|
|
allowedUDPPorts = lib.mkForce [ 8443 10000 ];
|
2022-02-28 10:59:24 +00:00
|
|
|
extraCommands = ''
|
|
|
|
iptables --table nat --append POSTROUTING --out-interface eth0 -j MASQUERADE
|
|
|
|
iptables --append FORWARD --in-interface vpn00 -j ACCEPT
|
|
|
|
'';
|
2021-11-15 10:02:05 +00:00
|
|
|
};
|
|
|
|
nameservers = [ "1.1.1.1" "1.0.0.1" ];
|
|
|
|
};
|
2023-11-16 00:00:11 +00:00
|
|
|
time.timeZone = config.selfprivacy.timezone;
|
2021-11-15 10:02:05 +00:00
|
|
|
i18n.defaultLocale = "en_GB.UTF-8";
|
2023-11-16 00:00:11 +00:00
|
|
|
users.users.root.openssh.authorizedKeys.keys = config.selfprivacy.ssh.rootKeys;
|
2021-11-15 10:02:05 +00:00
|
|
|
services.openssh = {
|
2023-11-16 00:00:11 +00:00
|
|
|
enable = config.selfprivacy.ssh.enable;
|
|
|
|
passwordAuthentication = config.selfprivacy.ssh.passwordAuthentication;
|
2021-11-15 10:02:05 +00:00
|
|
|
permitRootLogin = "yes";
|
|
|
|
openFirewall = false;
|
|
|
|
};
|
|
|
|
programs.ssh = {
|
2021-11-19 15:53:28 +00:00
|
|
|
pubkeyAcceptedKeyTypes = [ "ssh-ed25519" "ssh-rsa" ];
|
|
|
|
hostKeyAlgorithms = [ "ssh-ed25519" "ssh-rsa" ];
|
2021-11-15 10:02:05 +00:00
|
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
git
|
2022-07-19 12:18:46 +00:00
|
|
|
jq
|
2021-11-15 10:02:05 +00:00
|
|
|
];
|
2023-11-18 01:53:08 +00:00
|
|
|
# consider environment.defaultPackages = lib.mkForce [];
|
2021-11-15 10:02:05 +00:00
|
|
|
environment.variables = {
|
2023-11-16 00:00:11 +00:00
|
|
|
DOMAIN = config.selfprivacy.domain;
|
2021-11-15 10:02:05 +00:00
|
|
|
};
|
2023-11-18 14:54:55 +00:00
|
|
|
documentation.enable = false; # no {man,info}-pages & docs, etc to save space
|
2022-07-19 12:18:46 +00:00
|
|
|
system.autoUpgrade = {
|
2023-11-16 00:00:11 +00:00
|
|
|
enable = config.selfprivacy.autoUpgrade.enable;
|
|
|
|
allowReboot = config.selfprivacy.autoUpgrade.allowReboot;
|
2022-07-19 12:18:46 +00:00
|
|
|
channel = "https://channel.selfprivacy.org/nixos-selfpricacy";
|
|
|
|
};
|
2021-11-15 10:02:05 +00:00
|
|
|
nix = {
|
2023-11-18 01:53:08 +00:00
|
|
|
# TODO uncomment when NixOS version is at least 23.05
|
|
|
|
# nix.channel.enable = false;
|
|
|
|
|
|
|
|
# daemonCPUSchedPolicy = "idle";
|
|
|
|
# daemonIOSchedClass = "idle";
|
|
|
|
# daemonIOSchedPriority = 7;
|
|
|
|
# this is superseded by nix.settings.auto-optimise-store.
|
|
|
|
# optimise.automatic = true;
|
|
|
|
|
2021-11-15 10:02:05 +00:00
|
|
|
gc = {
|
2023-12-05 00:41:35 +00:00
|
|
|
automatic = true; # TODO it's debatable, because of IO&CPU load
|
2021-11-15 10:02:05 +00:00
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
};
|
2023-11-18 01:53:08 +00:00
|
|
|
nix.settings = {
|
|
|
|
sandbox = true;
|
|
|
|
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
|
|
|
# auto-optimise-store = true;
|
|
|
|
|
|
|
|
# evaluation restrictions:
|
|
|
|
# restrict-eval = true;
|
|
|
|
# allowed-uris = [];
|
|
|
|
allow-dirty = false;
|
|
|
|
};
|
|
|
|
nix.package =
|
|
|
|
if lib.versionAtLeast pkgs.nix.version "2.15.2"
|
|
|
|
then pkgs.nix.out
|
|
|
|
else pkgs.nixUnstable.out;
|
2022-08-26 10:21:05 +00:00
|
|
|
services.journald.extraConfig = "SystemMaxUse=500M";
|
2021-11-15 10:02:05 +00:00
|
|
|
boot.kernel.sysctl = {
|
2023-12-05 00:41:35 +00:00
|
|
|
"net.ipv4.ip_forward" = 1; # TODO why is it here by default, for VPN only?
|
2021-11-15 10:02:05 +00:00
|
|
|
};
|
2023-12-05 00:41:35 +00:00
|
|
|
# TODO must be configurable and determined at nixos-infect stage
|
2021-11-15 10:02:05 +00:00
|
|
|
swapDevices = [
|
|
|
|
{
|
|
|
|
device = "/swapfile";
|
|
|
|
priority = 0;
|
|
|
|
size = 2048;
|
|
|
|
}
|
|
|
|
];
|
2023-12-05 00:41:35 +00:00
|
|
|
# TODO why is sudo needed?
|
2021-11-15 10:02:05 +00:00
|
|
|
security = {
|
|
|
|
sudo = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
2023-11-23 07:09:49 +00:00
|
|
|
systemd.enableEmergencyMode = false;
|
|
|
|
systemd.coredump.enable = false;
|
2022-07-19 12:18:46 +00:00
|
|
|
}
|