it-infra/nixbld-etc-nixos/configuration.nix

936 lines
33 KiB
Nix
Raw Normal View History

2020-06-20 17:54:21 +08: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, ... }:
let
2021-08-07 12:24:00 +08:00
netifWan = "enp4s0";
netifLan = "enp5s0f1";
2021-08-09 13:32:18 +08:00
netifWifi = "wlp6s0";
2020-06-20 17:54:21 +08:00
netifSit = "henet0";
hydraWwwOutputs = "/var/www/hydra-outputs";
in
{
imports =
[
./hardware-configuration.nix
./backup-module.nix
2021-08-07 17:46:09 +08:00
./github-backup-module.nix
2022-02-07 14:31:37 +08:00
./afws-module.nix
2021-08-10 21:28:14 +08:00
./rt.nix
2022-06-18 13:58:51 +08:00
(builtins.fetchTarball {
2022-12-03 16:29:32 +08:00
url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/70a970f5a02b7febec1c3065e10c4155b99ecf86/nixos-mailserver-nixos.tar.gz";
sha256 = "sha256:0samfdxzsg14bwjl50p5x92v9scpa6l8nxjlshrwhib03dai47n1";
2022-06-18 13:58:51 +08:00
})
2020-06-20 17:54:21 +08:00
];
2021-08-07 12:24:00 +08:00
boot.loader.grub.enable = true;
boot.loader.grub.copyKernels = true;
boot.loader.grub.device = "nodev";
boot.loader.grub.efiSupport = true;
2020-06-20 17:54:21 +08:00
boot.loader.efi.canTouchEfiVariables = true;
2020-07-26 22:21:31 +08:00
boot.supportedFilesystems = ["zfs"];
2021-08-07 12:24:00 +08:00
boot.kernelParams = ["zfs.l2arc_write_max=536870912"];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2020-07-26 22:21:31 +08:00
services.zfs.autoScrub.enable = true;
2021-05-28 16:07:09 +08:00
services.zfs.autoScrub.interval = "monthly";
2020-07-26 22:29:33 +08:00
services.zfs.autoSnapshot.enable = true;
2021-08-07 12:24:00 +08:00
systemd.suppressedSystemUnits = [
"hibernate.target"
"suspend.target"
"suspend-then-hibernate.target"
"sleep.target"
"hybrid-sleep.target"
"systemd-hibernate.service"
"systemd-hybrid-sleep.service"
"systemd-suspend.service"
"systemd-suspend-then-hibernate.service"
];
2020-06-20 17:54:21 +08:00
security.apparmor.enable = true;
2022-01-03 14:34:57 +08:00
services.fail2ban.enable = true;
services.fail2ban.maxretry = 9;
services.fail2ban.bantime-increment.enable = true;
services.fail2ban.jails.sshd =
''
enabled = true
filter = sshd
action = iptables-allports
'';
2022-07-25 18:33:24 +08:00
services.fail2ban.jails.nginx-botsearch =
''
enabled = true
filter = nginx-botsearch
action = iptables-allports
'';
services.fail2ban.jails.nginx-limit-req =
''
enabled = true
filter = nginx-limit-req
action = iptables-allports
'';
services.fail2ban.jails.postfix =
''
enabled = true
filter = postfix
action = iptables-allports
'';
services.fail2ban.jails.dovecot =
''
enabled = true
filter = dovecot
action = iptables-allports
'';
2020-06-20 17:54:21 +08:00
networking = {
hostName = "nixbld";
2021-08-07 12:24:00 +08:00
hostId = "e423f012";
2020-06-20 17:54:21 +08:00
firewall = {
2022-09-17 19:13:54 +08:00
allowedTCPPorts = [ 53 80 443 7402 3939 3940 ];
2020-06-20 17:54:21 +08:00
allowedUDPPorts = [ 53 67 ];
trustedInterfaces = [ netifLan ];
};
2021-08-07 12:24:00 +08:00
interfaces."${netifWan}".useDHCP = true;
2020-06-20 17:54:21 +08:00
interfaces."${netifLan}" = {
ipv4.addresses = [{
address = "192.168.1.1";
prefixLength = 24;
}];
ipv6.addresses = [{
address = "2001:470:f821:1::";
prefixLength = 64;
}];
2021-03-04 15:54:41 +08:00
ipv4.routes = [{
address = "192.168.13.0";
prefixLength = 24;
2021-03-05 18:42:54 +08:00
via = "192.168.1.30";
2021-03-04 15:54:41 +08:00
}];
ipv6.routes = [{
address = "2001:470:f821:3::";
prefixLength = 64;
via = "2001:470:f821:1:dea6:32ff:fe95:2fcf";
}];
2020-06-20 17:54:21 +08:00
};
interfaces."${netifWifi}" = {
ipv4.addresses = [{
address = "192.168.12.1";
prefixLength = 24;
}];
ipv6.addresses = [{
address = "2001:470:f821:2::";
prefixLength = 64;
}];
};
nat = {
enable = true;
externalInterface = netifWan;
internalInterfaces = [ netifLan netifWifi ];
forwardPorts = [
{ sourcePort = 2201; destination = "192.168.1.201:22"; proto = "tcp"; }
{ sourcePort = 2202; destination = "192.168.1.202:22"; proto = "tcp"; }
{ sourcePort = 2203; destination = "192.168.1.203:22"; proto = "tcp"; }
{ sourcePort = 2204; destination = "192.168.1.204:22"; proto = "tcp"; }
];
extraCommands = ''
iptables -w -N block-lan-from-wifi
iptables -w -A block-lan-from-wifi -i ${netifLan} -o ${netifWifi} -j DROP
iptables -w -A block-lan-from-wifi -i ${netifWifi} -o ${netifLan} -j DROP
iptables -w -A FORWARD -j block-lan-from-wifi
iptables -w -N block-insecure-devices
2022-08-03 12:52:26 +08:00
iptables -w -A block-insecure-devices -m mac --mac-source 00:20:0c:6c:ee:ba -j DROP # keysight SA
iptables -w -A block-insecure-devices -m mac --mac-source 74:5b:c5:20:c1:5f -j DROP # siglent scope
iptables -w -A FORWARD -j block-insecure-devices
2020-06-20 17:54:21 +08:00
'';
extraStopCommands = ''
iptables -w -D FORWARD -j block-lan-from-wifi 2>/dev/null|| true
iptables -w -F block-lan-from-wifi 2>/dev/null|| true
iptables -w -X block-lan-from-wifi 2>/dev/null|| true
iptables -w -D FORWARD -j block-insecure-devices 2>/dev/null|| true
iptables -w -F block-insecure-devices 2>/dev/null|| true
iptables -w -X block-insecure-devices 2>/dev/null|| true
2020-06-20 17:54:21 +08:00
'';
};
sits."${netifSit}" = {
dev = netifWan;
remote = "216.218.221.6";
local = "42.200.147.171";
ttl = 255;
};
interfaces."${netifSit}".ipv6 = {
addresses = [{ address = "2001:470:18:629::2"; prefixLength = 64; }];
routes = [{ address = "::"; prefixLength = 0; }];
};
};
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = "1";
boot.kernel.sysctl."net.ipv6.conf.default.forwarding" = "1";
2021-04-05 00:08:44 +08:00
boot.kernel.sysctl."net.ipv6.conf.${netifLan}.accept_dad" = "0";
boot.kernel.sysctl."net.ipv6.conf.${netifWifi}.accept_dad" = "0";
2020-06-20 17:54:21 +08:00
2022-06-27 13:08:16 +08:00
# https://kb.isc.org/docs/dnssec-key-and-signing-policy
# chown named.named /etc/nixos/named
2022-06-26 16:57:17 +08:00
services.bind = {
2020-06-20 17:54:21 +08:00
enable = true;
2022-06-26 16:57:17 +08:00
listenOn = [ "42.200.147.171" ];
listenOnIpv6 = [ "2001:470:18:629::2" ];
forwarders = [];
extraOptions = "listen-on-v6 port 5354 { ::1; };";
cacheNetworks = [ "::1/128" ];
zones = {
2022-06-28 14:44:14 +08:00
"m-labs.hk" = {
name = "m-labs.hk";
2022-06-26 16:57:17 +08:00
master = true;
2022-06-28 14:44:14 +08:00
file = "/etc/nixos/named/m-labs.hk";
extraConfig =
''
dnssec-policy "default";
inline-signing yes;
'';
2022-06-28 14:44:14 +08:00
slaves = [
"213.239.220.50" "2a01:4f8:a0:7041::1" # qnetp
];
2021-06-07 09:56:05 +08:00
};
};
2020-06-20 17:54:21 +08:00
};
services.hostapd = {
enable = true;
interface = netifWifi;
hwMode = "g";
ssid = "M-Labs";
wpaPassphrase = (import /etc/nixos/secret/wifi_password.nix);
extraConfig = ''
ieee80211d=1
country_code=HK
ieee80211n=1
wmm_enabled=1
auth_algs=1
wpa_key_mgmt=WPA-PSK
rsn_pairwise=CCMP
'';
};
services.dnsmasq = {
enable = true;
2022-06-26 16:57:17 +08:00
servers = ["::1#5354"];
2020-06-20 17:54:21 +08:00
extraConfig = ''
interface=${netifLan}
interface=${netifWifi}
bind-interfaces
dhcp-range=interface:${netifLan},192.168.1.81,192.168.1.254,24h
dhcp-range=interface:${netifWifi},192.168.12.10,192.168.12.254,24h
enable-ra
dhcp-range=interface:${netifLan},::,constructor:${netifLan},ra-names
dhcp-range=interface:${netifWifi},::,constructor:${netifWifi},ra-only
no-resolv
# Static IPv4s to make Red Pitayas with factory firmware less annoying
2020-06-20 17:54:21 +08:00
dhcp-host=rp-f05cc9,192.168.1.190
dhcp-host=rp-f0612e,192.168.1.191
# Static IPv4s to make port redirections work
dhcp-host=rpi-1,192.168.1.201
dhcp-host=rpi-2,192.168.1.202
dhcp-host=rpi-3,192.168.1.203
dhcp-host=rpi-4,192.168.1.204
2020-06-24 11:06:35 +08:00
# Static IP addresses for non-DHCP boards
2021-03-05 18:42:54 +08:00
address=/rpi-ext/192.168.1.30
address=/rpi-ext/2001:470:f821:1:dea6:32ff:fe95:2fcf
2020-06-20 17:54:21 +08:00
address=/thermostat/192.168.1.26
2020-06-24 11:06:35 +08:00
address=/powercycler/192.168.1.31
2020-06-20 17:54:21 +08:00
address=/kc705/192.168.1.50
2020-06-24 11:06:35 +08:00
address=/zynq-experiments/192.168.1.51
address=/zc706/192.168.1.52
address=/zc706-2/192.168.1.53
address=/cora-z7/192.168.1.54
address=/rust-pitaya/192.168.1.55
2020-06-20 17:54:21 +08:00
address=/sayma/192.168.1.60
address=/metlino/192.168.1.65
address=/kasli/192.168.1.70
address=/kasli-customer/192.168.1.75
address=/stabilizer-customer/192.168.1.76
2021-03-05 18:42:54 +08:00
2020-06-20 17:54:21 +08:00
# uTCA MCH from NAT
address=/tschernobyl/192.168.1.80
# Google can't do DNS geolocation correctly and slows down websites of everyone using
# their shitty font cloud hosting. In HK, you sometimes get IPs behind the GFW that you
# cannot reach.
address=/fonts.googleapis.com/142.250.207.74
2020-06-20 17:54:21 +08:00
'';
};
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "de";
};
# Set your time zone.
time.timeZone = "Asia/Hong_Kong";
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
2022-05-26 12:12:14 +08:00
wget vim git file lm_sensors acpi pciutils psmisc nixopsUnstable
2020-06-20 17:54:21 +08:00
irssi tmux usbutils imagemagick jq zip unzip
2021-08-09 13:32:37 +08:00
iw
nvme-cli
2021-09-18 16:35:25 +08:00
borgbackup
2022-06-27 18:16:38 +08:00
bind
2022-02-07 14:31:37 +08:00
(callPackage ./afws { inherit pkgs; })
2020-06-20 17:54:21 +08:00
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
# List services that you want to enable:
services.apcupsd.enable = true;
services.apcupsd.configText = ''
UPSTYPE usb
NISIP 127.0.0.1
BATTERYLEVEL 10
MINUTES 5
'';
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.openssh.forwardX11 = true;
services.openssh.passwordAuthentication = false;
2022-09-17 19:13:54 +08:00
services.openssh.gatewayPorts = "clientspecified";
2020-06-20 17:54:21 +08:00
programs.mosh.enable = true;
programs.fish.enable = true;
# Enable CUPS to print documents.
services.avahi.enable = true;
services.avahi.interfaces = [ netifLan ];
services.avahi.publish.enable = true;
services.avahi.publish.userServices = true;
nixpkgs.config.allowUnfree = true;
services.printing.enable = true;
services.printing.drivers = [ pkgs.hplipWithPlugin ];
services.printing.browsing = true;
services.printing.listenAddresses = [ "*:631" ];
services.printing.defaultShared = true;
hardware.sane.enable = true;
hardware.sane.extraBackends = [ pkgs.hplipWithPlugin ];
2022-01-03 13:46:57 +08:00
users.extraUsers.root = {
openssh.authorizedKeys.keys = [
"ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBNdIiLvP2hmDUFyyE0oLOIXrjrMdWWpBV9/gPR5m4AiARx4JkufIDZzmptdYQ5FhJORJ4lluPqp7dAmahoSwg4lv9Di0iNQpHMJvNGZLHYKM1H1FWCCFIEDJ8bD4SVfrDg=="
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCMALVC8RDTHec+PC8y1s3tcpUAODgq6DEzQdHDf/cyvDMfmCaPiMxfIdmkns5lMa03hymIfSmLUF0jFFDc7biRp7uf9AAXNsrTmplHii0l0McuOOZGlSdZM4eL817P7UwJqFMxJyFXDjkubhQiX6kp25Kfuj/zLnupRCaiDvE7ho/xay6Jrv0XLz935TPDwkc7W1asLIvsZLheB+sRz9SMOb9gtrvk5WXZl5JTOFOLu+JaRwQLHL/xdcHJTOod7tqHYfpoC5JHrEwKzbhTOwxZBQBfTQjQktKENQtBxXHTe71rUEWfEZQGg60/BC4BrRmh4qJjlJu3v4VIhC7SSHn1"
];
shell = pkgs.fish;
};
# https://github.com/NixOS/nixpkgs/issues/155357
security.sudo.enable = true;
2022-01-03 13:46:57 +08:00
2020-06-20 17:54:21 +08:00
users.extraUsers.sb = {
isNormalUser = true;
2022-02-07 14:31:37 +08:00
extraGroups = ["lp" "scanner" "afws"];
2020-06-20 17:54:21 +08:00
openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyPk5WyFoWSvF4ozehxcVBoZ+UHgrI7VW/OoQfFFwIQe0qvetUZBMZwR2FwkLPAMZV8zz1v4EfncudEkVghy4P+/YVLlDjqDq9zwZnh8Nd/ifu84wmcNWHT2UcqnhjniCdshL8a44memzABnxfLLv+sXhP2x32cJAamo5y6fukr2qLp2jbXzR+3sv3klE0ruUXis/BR1lLqNJEYP8jB6fLn2sLKinnZPfn6DwVOk10mGeQsdME/eGl3phpjhODH9JW5V2V5nJBbC0rBnq+78dyArKVqjPSmIcSy72DEIpTctnMEN1W34BGrnsDd5Xd/DKxKxHKTMCHtZRwLC2X0NWN"
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCMALVC8RDTHec+PC8y1s3tcpUAODgq6DEzQdHDf/cyvDMfmCaPiMxfIdmkns5lMa03hymIfSmLUF0jFFDc7biRp7uf9AAXNsrTmplHii0l0McuOOZGlSdZM4eL817P7UwJqFMxJyFXDjkubhQiX6kp25Kfuj/zLnupRCaiDvE7ho/xay6Jrv0XLz935TPDwkc7W1asLIvsZLheB+sRz9SMOb9gtrvk5WXZl5JTOFOLu+JaRwQLHL/xdcHJTOod7tqHYfpoC5JHrEwKzbhTOwxZBQBfTQjQktKENQtBxXHTe71rUEWfEZQGg60/BC4BrRmh4qJjlJu3v4VIhC7SSHn1"
];
2020-10-27 14:57:07 +08:00
shell = pkgs.fish;
2020-06-20 17:54:21 +08:00
};
users.extraUsers.rj = {
isNormalUser = true;
2022-02-07 14:31:37 +08:00
extraGroups = ["afws"];
2020-06-20 17:54:21 +08:00
};
2022-05-05 19:23:40 +08:00
users.extraUsers.nkrackow = {
isNormalUser = true;
extraGroups = ["afws"];
openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDBNsAtZdp0BMvw0rRpMDgJ0V9hqB/BVSyhZ3m8LEx0im939ya6Urmlz3x7+RilD1LMl/p4B1Yxt+z/w7J5NB7unTYlKigJr/s9aH/0IKCFRvO5Omw88k3tWCCRA9KbbXAh0OE/Kli09rrgRuB6++c+XBZ4IvFvohfML0eAjdofn6ePnLWt+R/RNvNjmSb5y7rSIbJ9t+B7O1QOr7u+1GgZEexhG79o52I4rsrgyhUJOK4FbDGPnIkFYFeB2alijzbM1bAu9GR6BD4HBoqeW+DF7tUZs8GYtJsBX8rMnzuR3t8pM7RcGjY5IHQM9MM5WpHokJCFNSSzrvFgbK7CBFklOtipo1H1fwOuDuT3sCE3/ZTK5UgfKGdsb+vsvZub7KBNXfgru2webpl/rLcDJpn3eSDX/ZMGXVV8zskteQHtakra52bc2IeFaPiE1V+WeUB/LpIvRWG+Eh1VEgbUcjoVkaIBu6tQflW7US3uCGYan9Hw80MkwxAmqY1pogAJgzxsYbqdcNb8Xrra6LYFeMD8HXKdW9sXh7mzxDwwkzqjXCKPavWPT7ujicTRlJC6TfmZTdZUPh2mjvzUZI9ZPr50hkV0EAdERn57HwPGMlHiOCntPI/Jw3XmZXIOxChkyss5YFF5mWIzYOp5YxWBlWusNpnMeZCk2ncJmdXcAd6GzQ=="
];
};
users.extraUsers.backupdl = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyPk5WyFoWSvF4ozehxcVBoZ+UHgrI7VW/OoQfFFwIQe0qvetUZBMZwR2FwkLPAMZV8zz1v4EfncudEkVghy4P+/YVLlDjqDq9zwZnh8Nd/ifu84wmcNWHT2UcqnhjniCdshL8a44memzABnxfLLv+sXhP2x32cJAamo5y6fukr2qLp2jbXzR+3sv3klE0ruUXis/BR1lLqNJEYP8jB6fLn2sLKinnZPfn6DwVOk10mGeQsdME/eGl3phpjhODH9JW5V2V5nJBbC0rBnq+78dyArKVqjPSmIcSy72DEIpTctnMEN1W34BGrnsDd5Xd/DKxKxHKTMCHtZRwLC2X0NWN"
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCMALVC8RDTHec+PC8y1s3tcpUAODgq6DEzQdHDf/cyvDMfmCaPiMxfIdmkns5lMa03hymIfSmLUF0jFFDc7biRp7uf9AAXNsrTmplHii0l0McuOOZGlSdZM4eL817P7UwJqFMxJyFXDjkubhQiX6kp25Kfuj/zLnupRCaiDvE7ho/xay6Jrv0XLz935TPDwkc7W1asLIvsZLheB+sRz9SMOb9gtrvk5WXZl5JTOFOLu+JaRwQLHL/xdcHJTOod7tqHYfpoC5JHrEwKzbhTOwxZBQBfTQjQktKENQtBxXHTe71rUEWfEZQGg60/BC4BrRmh4qJjlJu3v4VIhC7SSHn1"
2022-09-17 19:19:00 +08:00
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQCrDyB76mzasnoVlkq0lsX8etaJycwOPFbMIG7vlcTqAoJzDbr3QO6X0SEVwQGAqNhyn7ZxI6Xnw0Ib2FncgoXc5heMYXC7GlI+9lUitUnn/oPIh1vFRoMf1oo7pAlqbO2IdAYyap77A+/Ftqwn2LFy22d7z+DyXOJn6BVVIOYH55mpdadZKXPQSS4wi4THHXzO2uIjTBDGJYUNUVGKG8ggn1/fbsTnerz8vQ3kQ8F+xofxo4W6nMFSohmlk24J+/mcCUWBdNChQwZKPuEG7dBVvAIUkDnmwAaTQGxKveZlOx1CTcHNZAjh53zZdixO8wDJ+qNNQyWEhXJt58iAo2BWx91g5f0ObMYfGk7ytP30EHJN6UKU0+aNz3hno9igLX2hhKoB9S6BAyKbdpuC6kWido3WMde1tcudrtrl4M7VipqS6N3rWU3d/KMPGK1T9LfLJXqiy8q1g66q+uB1ZUZ9Wbip7KFWEVPq5muXobYmF3sgzJ8BMoUQPQfbrejR0= backupdl@aux"
2020-10-27 14:57:07 +08:00
];
2020-06-20 17:54:21 +08:00
};
2021-11-11 12:12:46 +08:00
users.extraUsers.occheung = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBPEvmWmxpFpMgp5fpjKud8ev0cyf/+X5fEpQt/YD/+u4mbvZYPE300DLqQ0h/qjgvaGMz1ndf4idYnRdy+plJEC/+hmlRW5NlcpAr3S/LYAisacgKToFVl+MlBo+emS9Ig=="
];
};
2022-05-06 16:55:00 +08:00
users.extraUsers.spaqin = {
isNormalUser = true;
extraGroups = ["lp" "scanner" "afws"];
openssh.authorizedKeys.keys = [
"ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBOtmlQmIK/cEUkcwA/y9jC4AohjoEmikerpxzPhZZtOcENidN/vFum58jIcSxBvjHnILOzhfCTeLvbvGbQOFE53a7FOyEHmIzXRKS86Mg5bPHUBJxRSq9MjulGZXES3HOQ=="
];
shell = pkgs.zsh;
};
2022-07-31 19:40:45 +08:00
users.extraUsers.topquark12 = {
isNormalUser = true;
extraGroups = ["afws"];
openssh.authorizedKeys.keys = [
"ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBGtaB32Ri1O7zRVG+1ADXmhwbK0r8R+c5W1RJd7cab5O9jp10wI+0JArFgK8u4m9oaR1rrVy4ym8wWMNu8vGKVTgyK+6UK87qTD96pnzwTyvzKCMOIHVBAPsnVfdOSKXLQ=="
];
};
2022-11-11 17:46:10 +08:00
users.extraUsers.therobs12 = {
2022-09-21 10:12:25 +08:00
isNormalUser = true;
extraGroups = ["afws"];
openssh.authorizedKeys.keys = [
2022-11-11 17:46:10 +08:00
"ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBGKbLMWCWrcUIVDKc7wrkn1Oo1PCH3K0HWIXnPjgASqKdzrNkgrHcg8UsXS0tLKtoYWbWisVUU+V05p6RKMOP7TP6hc2xoVRov6fBMuKHnVJbR9BAkn3O2EaJ7Rlo0y8aQ=="
2022-09-21 10:12:25 +08:00
];
2022-11-11 17:58:10 +08:00
shell = pkgs.fish;
2022-09-21 10:12:25 +08:00
};
2020-06-20 17:54:21 +08:00
users.extraUsers.nix = {
isNormalUser = true;
};
boot.kernel.sysctl."kernel.dmesg_restrict" = true;
services.udev.packages = [ pkgs.sane-backends ];
2022-12-03 16:29:32 +08:00
nix.settings.max-jobs = 10;
2021-08-07 12:24:00 +08:00
nix.nrBuildUsers = 64;
2022-12-03 16:29:32 +08:00
nix.settings.trusted-users = ["sb"];
2020-06-20 17:54:21 +08:00
services.hydra = {
enable = true;
useSubstitutes = true;
hydraURL = "https://nixbld.m-labs.hk";
notificationSender = "hydra@m-labs.hk";
minimumDiskFree = 15; # in GB
minimumDiskFreeEvaluator = 1;
extraConfig =
''
binary_cache_secret_key_file = /etc/nixos/secret/nixbld.m-labs.hk-1
max_output_size = 10000000000
<runcommand>
job = web:web:web
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/web
</runcommand>
2022-09-27 11:07:13 +08:00
<runcommand>
job = web:web:nmigen-docs
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/nmigen-docs
</runcommand>
2020-06-20 17:54:21 +08:00
<runcommand>
job = artiq:sipyco:sipyco-manual-html
2020-06-20 17:54:21 +08:00
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/sipyco-manual-html
</runcommand>
<runcommand>
job = artiq:sipyco:sipyco-manual-pdf
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/sipyco-manual-pdf
2020-06-20 17:54:21 +08:00
</runcommand>
<runcommand>
job = artiq:main-beta:artiq-manual-html
2020-06-20 17:54:21 +08:00
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-html-beta
</runcommand>
<runcommand>
job = artiq:main-beta:artiq-manual-pdf
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-pdf-beta
2020-06-20 17:54:21 +08:00
</runcommand>
<runcommand>
job = artiq:extra-beta:conda-channel
2020-06-20 17:54:21 +08:00
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-conda-channel-beta
</runcommand>
<runcommand>
job = artiq:main:artiq-manual-html
2020-06-20 17:54:21 +08:00
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-html
</runcommand>
<runcommand>
job = artiq:main:artiq-manual-pdf
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-pdf
2020-06-20 17:54:21 +08:00
</runcommand>
<runcommand>
job = artiq:extra:conda-channel
2020-06-20 17:54:21 +08:00
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-conda-channel
</runcommand>
2021-02-17 16:09:20 +08:00
<runcommand>
job = artiq:full-legacy:artiq-manual-html
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-html-legacy
</runcommand>
<runcommand>
job = artiq:full-legacy:artiq-manual-latexpdf
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-latexpdf-legacy
</runcommand>
<runcommand>
job = artiq:full-legacy:conda-channel
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-conda-channel-legacy
</runcommand>
2021-08-10 19:08:25 +08:00
<runcommand>
job = artiq:*:conda-channel
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-conda-channel-archives/$(jq -r '.build' < $HYDRA_JSON)
</runcommand>
2022-11-03 19:09:35 +08:00
<runcommand>
job = artiq:extra-beta:msys2-repos
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-msys2-repos-beta
</runcommand>
2022-04-05 11:14:17 +08:00
<runcommand>
job = artiq:artiq-nac3:msys2-repos
2022-11-03 19:09:35 +08:00
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-msys2-repos-nac3
2022-04-05 11:14:17 +08:00
</runcommand>
2021-02-17 16:09:20 +08:00
<githubstatus>
jobs = artiq:fast.*:extended-tests
inputs = artiqSrc
useShortContext = 1
authorization = token ${(import /etc/nixos/secret/github_tokens.nix).artiq}
</githubstatus>
<gitea_authorization>
sb=${(import /etc/nixos/secret/gitea_tokens.nix).artiq-zynq}
</gitea_authorization>
2020-06-20 17:54:21 +08:00
'';
};
systemd.services.hydra-www-outputs-init = {
description = "Set up a hydra-owned directory for build outputs";
wantedBy = [ "multi-user.target" ];
requiredBy = [ "hydra-queue-runner.service" ];
before = [ "hydra-queue-runner.service" ];
serviceConfig = {
Type = "oneshot";
2021-08-10 19:08:25 +08:00
ExecStart = [
"${pkgs.coreutils}/bin/mkdir -p ${hydraWwwOutputs} ${hydraWwwOutputs}/artiq-conda-channel-archives"
"${pkgs.coreutils}/bin/chown hydra-queue-runner:hydra ${hydraWwwOutputs} ${hydraWwwOutputs}/artiq-conda-channel-archives"
];
2020-06-20 17:54:21 +08:00
};
};
2022-02-07 14:31:37 +08:00
services.afws.enable = true;
2020-06-20 17:54:21 +08:00
nix.extraOptions = ''
secret-key-files = /etc/nixos/secret/nixbld.m-labs.hk-1
2022-12-03 16:29:32 +08:00
experimental-features = nix-command flakes
2020-06-20 17:54:21 +08:00
'';
2022-12-03 16:29:32 +08:00
nix.settings.extra-sandbox-paths = ["/opt"];
2020-06-20 17:54:21 +08:00
services.munin-node.enable = true;
services.munin-cron = {
enable = true;
hosts = ''
[${config.networking.hostName}]
address localhost
'';
};
services.mlabs-backup.enable = true;
2021-08-07 17:46:09 +08:00
services.ghbackup.enable = true;
2020-06-20 17:54:21 +08:00
services.gitea = {
enable = true;
httpPort = 3001;
rootUrl = "https://git.m-labs.hk/";
appName = "M-Labs Git";
mailerPasswordFile = "/etc/nixos/secret/mailerpassword";
2020-10-31 17:30:46 +08:00
settings = {
indexer = {
REPO_INDEXER_ENABLED = true;
};
2020-08-31 17:39:28 +08:00
2020-10-31 17:30:46 +08:00
mailer = {
ENABLED = true;
2022-08-13 11:22:01 +08:00
HOST = "mail.m-labs.hk:587";
2020-10-31 17:30:46 +08:00
FROM = "sysop@m-labs.hk";
USER = "sysop@m-labs.hk";
};
2020-06-20 17:54:21 +08:00
2020-10-31 17:30:46 +08:00
service = {
ENABLE_NOTIFY_MAIL = true;
2022-12-03 16:29:32 +08:00
DISABLE_REGISTRATION = true;
2020-10-31 17:30:46 +08:00
};
2020-06-20 17:54:21 +08:00
2020-10-31 17:30:46 +08:00
attachment = {
ALLOWED_TYPES = "*/*";
};
2022-12-03 16:29:32 +08:00
log.LEVEL = "Warn";
session.COOKIE_SECURE = true;
2020-10-31 17:30:46 +08:00
};
2020-06-20 17:54:21 +08:00
};
systemd.tmpfiles.rules = [
"L+ '${config.services.gitea.stateDir}/custom/templates/home.tmpl' - - - - ${./gitea-home.tmpl}"
"L+ '${config.services.gitea.stateDir}/custom/templates/user/auth/signin.tmpl' - - - - ${./gitea-signin.tmpl}"
2020-06-20 17:54:21 +08:00
];
services.mattermost = {
enable = true;
siteUrl = "https://chat.m-labs.hk/";
mutableConfig = true;
};
2021-06-07 09:56:05 +08:00
services.postgresql.package = pkgs.postgresql_11;
2020-06-20 17:54:21 +08:00
services.matterbridge = {
enable = true;
configPath = "/etc/nixos/secret/matterbridge.toml";
};
nixpkgs.config.packageOverrides = super: let self = super.pkgs; in {
nix = super.nix.overrideAttrs(oa: {
patches = oa.patches or [] ++ [ ./nix-28-networked-derivations.patch ];
});
2022-05-26 12:12:14 +08:00
hydra_unstable = super.hydra_unstable.overrideAttrs(oa: {
patches = oa.patches or [] ++ [
./hydra-conda.patch
2022-04-04 15:05:39 +08:00
./hydra-msys2.patch
./hydra-restrictdist.patch
./hydra-hack-allowed-uris.patch # work around https://github.com/NixOS/nix/issues/5039
];
2020-06-20 17:54:21 +08:00
hydraPath = oa.hydraPath + ":" + super.lib.makeBinPath [ super.jq ];
2022-05-26 12:12:14 +08:00
doCheck = false; # FIXME: ldap tests fail on hydra rebuild, seems unrelated to patches above.
2020-06-20 17:54:21 +08:00
});
matterbridge = super.matterbridge.overrideAttrs(oa: {
patches = oa.patches or [] ++ [ ./matterbridge-disable-github.patch ];
});
};
security.acme.acceptTerms = true;
2022-05-26 12:12:14 +08:00
security.acme.defaults.email = "sb" + "@m-labs.hk";
# https://github.com/NixOS/nixpkgs/issues/106862
2022-06-26 16:57:17 +08:00
systemd.services."acme-fixperms".wants = [ "bind.service" "dnsmasq.service" ];
systemd.services."acme-fixperms".after = [ "bind.service" "dnsmasq.service" ];
2020-06-20 17:54:21 +08:00
services.nginx = {
enable = true;
recommendedProxySettings = true;
recommendedGzipSettings = true;
virtualHosts = let
mainWebsite = {
addSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
root = "${hydraWwwOutputs}/web";
extraConfig = ''
error_page 404 /404.html;
'';
locations."^~ /fonts/".extraConfig = ''
expires 60d;
'';
locations."^~ /js/".extraConfig = ''
expires 60d;
'';
locations."/MathJax/" = {
alias = "/var/www/MathJax/";
extraConfig = ''
expires 60d;
'';
};
# legacy URLs, redirect to avoid breaking people's bookmarks
locations."/gateware.html".extraConfig = ''
return 301 /gateware/migen/;
'';
locations."/migen".extraConfig = ''
return 301 /gateware/migen/;
'';
locations."/artiq".extraConfig = ''
return 301 /experiment-control/artiq/;
'';
locations."/artiq/resources.html".extraConfig = ''
return 301 /experiment-control/resources/;
'';
# autogenerated manuals
locations."/artiq/sipyco-manual/" = {
alias = "${hydraWwwOutputs}/sipyco-manual-html/";
2020-06-20 17:54:21 +08:00
};
locations."=/artiq/sipyco-manual.pdf" = {
alias = "${hydraWwwOutputs}/sipyco-manual-pdf/SiPyCo.pdf";
2020-06-20 17:54:21 +08:00
};
locations."/artiq/manual-beta/" = {
alias = "${hydraWwwOutputs}/artiq-manual-html-beta/";
2020-06-20 17:54:21 +08:00
};
locations."=/artiq/manual-beta.pdf" = {
alias = "${hydraWwwOutputs}/artiq-manual-pdf-beta/ARTIQ.pdf";
2020-06-20 17:54:21 +08:00
};
locations."/artiq/manual/" = {
alias = "${hydraWwwOutputs}/artiq-manual-html/";
2020-06-20 17:54:21 +08:00
};
locations."=/artiq/manual.pdf" = {
alias = "${hydraWwwOutputs}/artiq-manual-pdf/ARTIQ.pdf";
2020-06-20 17:54:21 +08:00
};
2021-02-17 16:09:20 +08:00
locations."/artiq/manual-legacy/" = {
alias = "${hydraWwwOutputs}/artiq-manual-html-legacy/share/doc/artiq-manual/html/";
};
locations."=/artiq/manual-legacy.pdf" = {
alias = "${hydraWwwOutputs}/artiq-manual-latexpdf-legacy/share/doc/artiq-manual/ARTIQ.pdf";
};
2020-06-20 17:54:21 +08:00
# legacy content
locations."/migen/manual/" = {
alias = "/var/www/m-labs.hk.old/migen/manual/";
};
locations."/artiq/manual-release-4/" = {
alias = "/var/www/m-labs.hk.old/artiq/manual-release-4/";
};
locations."/artiq/manual-release-3/" = {
alias = "/var/www/m-labs.hk.old/artiq/manual-release-3/";
};
locations."/artiq/manual-release-2/" = {
alias = "/var/www/m-labs.hk.old/artiq/manual-release-2/";
};
};
in {
"m-labs.hk" = mainWebsite;
"www.m-labs.hk" = mainWebsite;
2022-04-14 12:17:22 +08:00
"m-labs.science" = mainWebsite;
"www.m-labs.science" = mainWebsite;
2020-06-20 17:54:21 +08:00
"lab.m-labs.hk" = {
2022-04-05 11:14:17 +08:00
forceSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
locations."/munin/".alias = "/var/www/munin/";
2022-09-23 11:00:49 +08:00
locations."/munin/".extraConfig = ''
2020-06-20 17:54:21 +08:00
auth_basic "Munin";
auth_basic_user_file /etc/nixos/secret/muninpasswd;
'';
};
"nixbld.m-labs.hk" = {
forceSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
locations."/".proxyPass = "http://127.0.0.1:3000";
};
2022-11-03 19:09:35 +08:00
"msys2.m-labs.hk" = {
forceSSL = true;
enableACME = true;
locations."/artiq-beta/" = {
alias = "${hydraWwwOutputs}/artiq-msys2-repos-beta/";
extraConfig = ''
autoindex on;
'';
};
locations."/artiq-nac3/" = {
alias = "${hydraWwwOutputs}/artiq-msys2-repos-nac3/";
extraConfig = ''
autoindex on;
'';
};
};
2020-06-20 17:54:21 +08:00
"conda.m-labs.hk" = {
forceSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
locations."/artiq-beta/" = {
alias = "${hydraWwwOutputs}/artiq-conda-channel-beta/";
extraConfig = ''
autoindex on;
index bogus_index_file;
'';
};
locations."/artiq/" = {
alias = "${hydraWwwOutputs}/artiq-conda-channel/";
extraConfig = ''
autoindex on;
index bogus_index_file;
'';
};
2021-02-17 16:09:20 +08:00
locations."/artiq-legacy/" = {
alias = "${hydraWwwOutputs}/artiq-conda-channel-legacy/";
extraConfig = ''
autoindex on;
index bogus_index_file;
'';
};
2021-08-10 19:08:25 +08:00
locations."/artiq-archives/" = {
alias = "${hydraWwwOutputs}/artiq-conda-channel-archives/";
extraConfig = ''
autoindex on;
index bogus_index_file;
'';
};
2020-06-20 17:54:21 +08:00
};
"git.m-labs.hk" = {
forceSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
locations."/".proxyPass = "http://127.0.0.1:3001";
extraConfig = ''
client_max_body_size 300M;
'';
};
"chat.m-labs.hk" = {
forceSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
locations."/".proxyPass = "http://127.0.0.1:8065";
locations."~ /api/v[0-9]+/(users/)?websocket$".proxyPass = "http://127.0.0.1:8065";
locations."~ /api/v[0-9]+/(users/)?websocket$".proxyWebsockets = true;
};
"hooks.m-labs.hk" = {
forceSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
locations."/mattermost-github".extraConfig = ''
include ${pkgs.nginx}/conf/uwsgi_params;
uwsgi_pass unix:${config.services.uwsgi.runDir}/uwsgi-mgi.sock;
'';
locations."/rfq".extraConfig = ''
include ${pkgs.nginx}/conf/uwsgi_params;
uwsgi_pass unix:${config.services.uwsgi.runDir}/uwsgi-rfq.sock;
'';
};
"forum.m-labs.hk" = {
forceSSL = true;
enableACME = true;
root = "/var/www/flarum/public";
2020-06-20 17:54:21 +08:00
locations."~ \.php$".extraConfig = ''
fastcgi_pass unix:${config.services.phpfpm.pools.flarum.socket};
fastcgi_index index.php;
'';
extraConfig = ''
index index.php;
include /var/www/flarum/.nginx.conf;
2020-06-20 17:54:21 +08:00
'';
};
"perso.m-labs.hk" = {
addSSL = true;
enableACME = true;
2020-06-20 17:54:21 +08:00
root = "/var/www/perso";
};
2021-08-10 21:28:14 +08:00
"rt.m-labs.hk" = {
forceSSL = true;
enableACME = true;
2021-08-11 10:54:12 +08:00
locations."/" = {
proxyPass = "http://127.0.0.1:4201";
extraConfig = ''
client_max_body_size 100M;
'';
};
locations."/REST/1.0/NoAuth" = {
proxyPass = "http://127.0.0.1:4201";
extraConfig = ''
client_max_body_size 100M;
allow 127.0.0.1;
deny all;
'';
};
2021-08-10 21:28:14 +08:00
};
2022-06-30 17:33:09 +08:00
"files.m-labs.hk" = {
forceSSL = true;
enableACME = true;
};
2022-09-01 11:39:47 +08:00
"docs.m-labs.hk" = {
forceSSL = true;
enableACME = true;
2022-12-03 16:29:32 +08:00
locations."/".proxyPass = "http://localhost:9825";
locations."/socket.io/".proxyPass = "http://localhost:9825";
2022-09-01 11:39:47 +08:00
locations."/socket.io/".proxyWebsockets = true;
};
2022-09-27 11:07:13 +08:00
"nmigen.net" = {
2020-06-20 17:54:21 +08:00
addSSL = true;
enableACME = true;
2022-09-27 11:07:13 +08:00
root = "${hydraWwwOutputs}/nmigen-docs";
2020-06-20 17:54:21 +08:00
};
2022-09-27 11:07:13 +08:00
"www.nmigen.net" = {
2020-06-20 17:54:21 +08:00
addSSL = true;
enableACME = true;
2022-09-27 11:07:13 +08:00
root = "${hydraWwwOutputs}/nmigen-docs";
2020-06-20 17:54:21 +08:00
};
};
};
services.uwsgi = {
enable = true;
plugins = [ "python3" ];
instance = {
type = "emperor";
vassals = {
mattermostgithub = import ./mattermost-github-integration/uwsgi-config.nix { inherit config pkgs; };
rfq = import ./rfq/uwsgi-config.nix { inherit config pkgs; };
};
};
};
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
services.phpfpm.pools.flarum = {
user = "nobody";
2020-06-20 17:54:21 +08:00
settings = {
"listen.owner" = "nginx";
"listen.group" = "nginx";
"listen.mode" = "0600";
"pm" = "dynamic";
"pm.max_children" = 5;
"pm.start_servers" = 2;
"pm.min_spare_servers" = 1;
"pm.max_spare_servers" = 3;
"pm.max_requests" = 500;
};
};
2021-08-10 21:28:14 +08:00
services.rt = {
enable = true;
2021-08-12 13:39:35 +08:00
package = pkgs.rt.overrideAttrs(oa: {
patches = oa.patches or [] ++ [ ./rt-session.patch ];
});
2021-08-10 21:28:14 +08:00
organization = "M-Labs";
domain = "rt.m-labs.hk";
rtName = "Helpdesk";
ownerEmail = "sb" + "@m-labs.hk";
commentAddress = "helpdesk" + "@m-labs.hk";
correspondAddress = "helpdesk" + "@m-labs.hk";
2021-08-11 10:54:24 +08:00
sendmailPath = "${pkgs.msmtp}/bin/msmtp";
sendmailArguments = ["-t" "-C" "/etc/nixos/secret/rt_msmtp.conf"];
2021-08-10 21:28:14 +08:00
};
2021-08-11 11:57:05 +08:00
systemd.services.rt-fetchmail = {
description = "Fetchmail for RT";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
Restart = "on-failure";
User = "rt";
Group = "rt";
ExecStart = "${pkgs.bash}/bin/bash -c 'PATH=${pkgs.rt}/bin HOME=/tmp ${pkgs.fetchmail}/bin/fetchmail -f /etc/nixos/secret/rt_fetchmailrc'";
};
};
2021-08-10 21:28:14 +08:00
2022-06-18 13:58:51 +08:00
mailserver = {
enable = true;
localDnsResolver = false; # conflicts with dnsmasq
fqdn = "mail.m-labs.hk";
domains = [ "m-labs.hk" ];
2022-06-18 13:58:51 +08:00
certificateScheme = 3;
2022-08-09 17:45:26 +08:00
} // (import /etc/nixos/secret/email_settings.nix);
services.roundcube = {
enable = true;
hostName = "mail.m-labs.hk";
extraConfig = ''
$config['smtp_server'] = "tls://${config.mailserver.fqdn}";
$config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p";
'';
2022-06-18 13:58:51 +08:00
};
2022-06-30 17:33:09 +08:00
services.nextcloud = {
enable = true;
2022-12-03 16:29:32 +08:00
package = pkgs.nextcloud25;
2022-06-30 17:33:09 +08:00
hostName = "files.m-labs.hk";
https = true;
2022-12-03 16:29:32 +08:00
enableBrokenCiphersForSSE = false;
2022-06-30 17:33:09 +08:00
config.adminpassFile = "/etc/nixos/secret/nextcloud_pass.txt";
};
2022-09-01 11:39:47 +08:00
services.hedgedoc = {
enable = true;
2022-12-03 16:29:32 +08:00
settings = {
port = 9825;
domain = "docs.m-labs.hk";
protocolUseSSL = true;
allowEmailRegister = false;
allowAnonymous = false;
db = {
dialect = "sqlite";
storage = "/var/lib/hedgedoc/db.hedgedoc.sqlite";
};
2022-09-01 11:39:47 +08:00
};
};
2021-08-07 13:19:47 +08:00
system.stateVersion = "21.05";
2020-06-20 17:54:21 +08:00
}