2019-02-16 00:33:08 +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, ... }:
|
|
|
|
|
|
2019-05-22 19:21:40 +08:00
|
|
|
|
let
|
|
|
|
|
hydraWwwOutputs = "/var/www/hydra-outputs";
|
|
|
|
|
in
|
2019-02-16 00:33:08 +08:00
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
2019-05-01 04:38:58 +08:00
|
|
|
|
./homu/nixos-module.nix
|
2019-05-24 15:19:33 +08:00
|
|
|
|
./backup-module.nix
|
2019-02-16 00:33:08 +08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
2019-09-05 15:27:44 +08:00
|
|
|
|
networking = {
|
|
|
|
|
hostName = "nixbld";
|
|
|
|
|
firewall = {
|
|
|
|
|
allowedTCPPorts = [ 80 443 631 5901 ];
|
|
|
|
|
allowedUDPPorts = [ 53 67 631 ];
|
|
|
|
|
};
|
|
|
|
|
networkmanager.unmanaged = [ "interface-name:wlp3s0" ];
|
|
|
|
|
interfaces."wlp3s0".ipv4.addresses = [{
|
|
|
|
|
address = "192.168.12.1";
|
|
|
|
|
prefixLength = 24;
|
|
|
|
|
}];
|
|
|
|
|
nat = {
|
|
|
|
|
enable = true;
|
|
|
|
|
externalInterface = "enp0s31f6";
|
|
|
|
|
internalInterfaces = ["wlp3s0"];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.hostapd = {
|
|
|
|
|
enable = true;
|
|
|
|
|
interface = "wlp3s0";
|
|
|
|
|
hwMode = "g";
|
|
|
|
|
ssid = "M-Labs";
|
|
|
|
|
wpaPassphrase = (import /etc/nixos/secret/wifi_password.nix);
|
|
|
|
|
};
|
|
|
|
|
services.dnsmasq = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
interface=wlp3s0
|
|
|
|
|
bind-interfaces
|
|
|
|
|
dhcp-range=192.168.12.10,192.168.12.254,24h
|
|
|
|
|
'';
|
|
|
|
|
};
|
2019-02-16 00:33:08 +08:00
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
i18n = {
|
|
|
|
|
consoleFont = "Lat2-Terminus16";
|
|
|
|
|
consoleKeyMap = "de";
|
|
|
|
|
defaultLocale = "en_US.UTF-8";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# 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; [
|
2019-09-05 16:47:01 +08:00
|
|
|
|
wget vim git file lm_sensors acpi pciutils psmisc xc3sprog openocd telnet whois zip unzip
|
2019-04-18 19:48:42 +08:00
|
|
|
|
irssi tmux adoptopenjdk-openj9-bin-11 tigervnc xorg.xauth icewm xterm xorg.xsetroot usbutils virtmanager imagemagick jq
|
2019-02-16 00:33:08 +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:
|
|
|
|
|
|
|
|
|
|
# Enable the OpenSSH daemon.
|
|
|
|
|
services.openssh.enable = true;
|
2019-04-14 18:32:58 +08:00
|
|
|
|
services.openssh.forwardX11 = true;
|
2019-04-18 19:48:58 +08:00
|
|
|
|
programs.mosh.enable = true;
|
2019-02-16 00:33:08 +08:00
|
|
|
|
|
2019-07-31 22:48:10 +08:00
|
|
|
|
programs.fish.enable = true;
|
2019-02-16 00:33:08 +08:00
|
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
|
services.avahi.enable = true;
|
|
|
|
|
services.avahi.publish.enable = true;
|
|
|
|
|
services.avahi.publish.userServices = 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 ];
|
|
|
|
|
|
|
|
|
|
users.extraGroups.plugdev = { };
|
|
|
|
|
users.extraUsers.sb = {
|
|
|
|
|
isNormalUser = true;
|
2019-09-05 16:47:01 +08:00
|
|
|
|
extraGroups = ["wheel" "plugdev" "dialout" "lp" "scanner"];
|
2019-07-31 22:48:10 +08:00
|
|
|
|
shell = pkgs.fish;
|
2019-02-16 00:33:08 +08:00
|
|
|
|
};
|
2019-04-18 19:49:02 +08:00
|
|
|
|
users.extraUsers.rj = {
|
|
|
|
|
isNormalUser = true;
|
2019-09-05 16:47:01 +08:00
|
|
|
|
extraGroups = ["wheel" "plugdev" "dialout"];
|
2019-04-18 19:49:02 +08:00
|
|
|
|
};
|
2019-04-21 10:44:14 +08:00
|
|
|
|
users.extraUsers.astro = {
|
|
|
|
|
isNormalUser = true;
|
2019-09-05 16:47:01 +08:00
|
|
|
|
extraGroups = ["plugdev" "dialout"];
|
2019-04-21 10:44:14 +08:00
|
|
|
|
};
|
2019-05-02 13:18:31 +08:00
|
|
|
|
users.extraUsers.whitequark = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = ["plugdev" "dialout"];
|
|
|
|
|
};
|
2019-04-08 23:45:30 +08:00
|
|
|
|
users.extraUsers.nix = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
};
|
2019-02-16 00:33:08 +08:00
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
2019-05-02 13:06:07 +08:00
|
|
|
|
security.hideProcessInformation = true;
|
|
|
|
|
boot.kernel.sysctl."kernel.dmesg_restrict" = true;
|
2019-02-16 00:33:08 +08:00
|
|
|
|
services.udev.packages = [ pkgs.openocd ];
|
|
|
|
|
services.udev.extraRules = ''
|
|
|
|
|
ACTION=="add", SUBSYSTEM=="tty", \
|
|
|
|
|
ENV{ID_SERIAL}=="FTDI_Quad_RS232-HS", \
|
|
|
|
|
ENV{ID_PATH}=="pci-0000:00:14.0-usb-0:5:1.1", \
|
|
|
|
|
SYMLINK+="ttyUSB_sayma-1_0"
|
|
|
|
|
ACTION=="add", SUBSYSTEM=="tty", \
|
|
|
|
|
ENV{ID_SERIAL}=="FTDI_Quad_RS232-HS", \
|
|
|
|
|
ENV{ID_PATH}=="pci-0000:00:14.0-usb-0:5:1.2", \
|
|
|
|
|
SYMLINK+="ttyUSB_sayma-1_1"
|
|
|
|
|
|
|
|
|
|
ACTION=="add", SUBSYSTEM=="tty", \
|
|
|
|
|
ENV{ID_SERIAL}=="FTDI_Quad_RS232-HS", \
|
|
|
|
|
ENV{ID_PATH}=="pci-0000:00:14.0-usb-0:1:1.2", \
|
|
|
|
|
SYMLINK+="ttyUSB_kasli-n1"
|
|
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
2019-04-08 23:45:30 +08:00
|
|
|
|
nix.distributedBuilds = true;
|
2019-04-08 22:35:38 +08:00
|
|
|
|
nix.buildMachines = [
|
|
|
|
|
{
|
|
|
|
|
hostName = "localhost";
|
|
|
|
|
maxJobs = 4;
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
supportedFeatures = ["big-parallel"];
|
|
|
|
|
}
|
2019-04-08 23:45:30 +08:00
|
|
|
|
{
|
|
|
|
|
hostName = "rpi-1";
|
|
|
|
|
sshUser = "nix";
|
2019-04-14 18:35:01 +08:00
|
|
|
|
sshKey = "/etc/nixos/secret/nix_id_rsa";
|
2019-04-08 23:45:30 +08:00
|
|
|
|
maxJobs = 1;
|
|
|
|
|
system = "aarch64-linux";
|
|
|
|
|
}
|
2019-04-08 22:35:38 +08:00
|
|
|
|
];
|
2019-02-16 00:33:08 +08:00
|
|
|
|
services.hydra = {
|
|
|
|
|
enable = true;
|
2019-02-17 12:33:27 +08:00
|
|
|
|
useSubstitutes = true;
|
2019-02-16 00:33:08 +08:00
|
|
|
|
hydraURL = "https://nixbld.m-labs.hk";
|
|
|
|
|
notificationSender = "hydra@m-labs.hk";
|
2019-05-29 15:48:59 +08:00
|
|
|
|
minimumDiskFree = 15; # in GB
|
2019-02-16 00:33:08 +08:00
|
|
|
|
minimumDiskFreeEvaluator = 1;
|
2019-02-17 23:19:36 +08:00
|
|
|
|
extraConfig =
|
|
|
|
|
''
|
2019-02-16 00:33:08 +08:00
|
|
|
|
binary_cache_secret_key_file = /etc/nixos/secret/nixbld.m-labs.hk-1
|
2019-05-29 15:31:45 +08:00
|
|
|
|
max_output_size = 10000000000
|
2019-05-22 19:21:40 +08:00
|
|
|
|
|
2019-07-19 14:54:18 +08:00
|
|
|
|
<runcommand>
|
|
|
|
|
job = web:web:web
|
2019-08-14 06:03:42 +08:00
|
|
|
|
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/web
|
2019-07-19 14:54:18 +08:00
|
|
|
|
</runcommand>
|
2019-05-22 19:21:40 +08:00
|
|
|
|
<runcommand>
|
2019-07-18 00:10:33 +08:00
|
|
|
|
job = artiq:full:artiq-manual-html
|
2019-08-14 06:03:42 +08:00
|
|
|
|
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-html-beta
|
2019-05-22 19:21:40 +08:00
|
|
|
|
</runcommand>
|
|
|
|
|
<runcommand>
|
2019-07-18 00:10:33 +08:00
|
|
|
|
job = artiq:full:artiq-manual-latexpdf
|
2019-08-14 06:03:42 +08:00
|
|
|
|
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-manual-latexpdf-beta
|
2019-05-22 19:21:40 +08:00
|
|
|
|
</runcommand>
|
2019-07-18 00:20:05 +08:00
|
|
|
|
<runcommand>
|
|
|
|
|
job = artiq:full:conda-channel
|
2019-08-14 06:03:42 +08:00
|
|
|
|
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-conda-channel-beta
|
2019-07-18 00:20:05 +08:00
|
|
|
|
</runcommand>
|
2019-02-17 23:19:36 +08:00
|
|
|
|
'';
|
2019-02-16 00:33:08 +08:00
|
|
|
|
};
|
2019-05-22 19:21:40 +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";
|
|
|
|
|
ExecStart = [ "${pkgs.coreutils}/bin/mkdir -p ${hydraWwwOutputs}" "${pkgs.coreutils}/bin/chown hydra-queue-runner:hydra ${hydraWwwOutputs}" ];
|
2019-05-21 00:55:47 +08:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-16 00:33:08 +08:00
|
|
|
|
|
|
|
|
|
nix.extraOptions = ''
|
|
|
|
|
secret-key-files = /etc/nixos/secret/nixbld.m-labs.hk-1
|
|
|
|
|
'';
|
|
|
|
|
nix.sandboxPaths = ["/opt"];
|
|
|
|
|
|
2019-03-14 17:53:56 +08:00
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
|
|
2019-05-24 10:26:59 +08:00
|
|
|
|
services.munin-node.enable = true;
|
|
|
|
|
services.munin-cron = {
|
|
|
|
|
enable = true;
|
|
|
|
|
hosts = ''
|
|
|
|
|
[${config.networking.hostName}]
|
|
|
|
|
address localhost
|
|
|
|
|
'';
|
|
|
|
|
};
|
2019-05-24 15:19:33 +08:00
|
|
|
|
services.mlabs-backup.enable = true;
|
2019-05-24 10:26:59 +08:00
|
|
|
|
|
2019-03-31 23:51:06 +08:00
|
|
|
|
services.gitea = {
|
2019-03-27 22:42:12 +08:00
|
|
|
|
enable = true;
|
2019-03-31 23:51:06 +08:00
|
|
|
|
httpPort = 3001;
|
|
|
|
|
rootUrl = "https://git.m-labs.hk/";
|
2019-04-01 10:55:59 +08:00
|
|
|
|
appName = "M-Labs Git";
|
|
|
|
|
cookieSecure = true;
|
2019-04-02 00:49:37 +08:00
|
|
|
|
disableRegistration = true;
|
2019-05-20 09:08:39 +08:00
|
|
|
|
extraConfig =
|
|
|
|
|
''
|
|
|
|
|
[attachment]
|
|
|
|
|
ALLOWED_TYPES = */*
|
|
|
|
|
'';
|
2019-03-27 22:42:12 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-04-01 00:12:46 +08:00
|
|
|
|
services.mattermost = {
|
|
|
|
|
enable = true;
|
|
|
|
|
siteUrl = "https://chat.m-labs.hk/";
|
2019-04-02 00:50:26 +08:00
|
|
|
|
mutableConfig = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.matterbridge = {
|
|
|
|
|
enable = true;
|
|
|
|
|
configPath = "/etc/nixos/secret/matterbridge.toml";
|
2019-04-01 00:12:46 +08:00
|
|
|
|
};
|
2019-04-26 21:23:33 +08:00
|
|
|
|
|
|
|
|
|
nixpkgs.config.packageOverrides = super: let self = super.pkgs; in {
|
2019-05-21 16:47:47 +08:00
|
|
|
|
hydra = super.hydra.overrideAttrs(oa: {
|
|
|
|
|
patches = oa.patches ++ [ ./hydra-conda.patch ./hydra-retry.patch ];
|
|
|
|
|
hydraPath = oa.hydraPath + ":" + super.lib.makeBinPath [ super.jq ];
|
|
|
|
|
});
|
|
|
|
|
matterbridge = super.matterbridge.overrideAttrs(oa: {
|
|
|
|
|
patches = [ ./matterbridge-disable-github.patch ];
|
|
|
|
|
});
|
2019-04-26 21:23:33 +08:00
|
|
|
|
};
|
2019-04-01 00:12:46 +08:00
|
|
|
|
|
2019-04-01 19:47:47 +08:00
|
|
|
|
security.acme.certs = {
|
|
|
|
|
"nixbld.m-labs.hk" = {
|
|
|
|
|
webroot = "/var/lib/acme/acme-challenge";
|
|
|
|
|
extraDomains = {
|
2019-04-21 10:43:48 +08:00
|
|
|
|
"m-labs.hk" = null;
|
|
|
|
|
"www.m-labs.hk" = null;
|
2019-07-19 16:23:47 +08:00
|
|
|
|
"conda.m-labs.hk" = null;
|
2019-04-01 19:47:47 +08:00
|
|
|
|
"lab.m-labs.hk" = null;
|
|
|
|
|
"git.m-labs.hk" = null;
|
|
|
|
|
"chat.m-labs.hk" = null;
|
2019-05-20 09:18:21 +08:00
|
|
|
|
"hooks.m-labs.hk" = null;
|
2019-05-21 16:08:54 +08:00
|
|
|
|
"forum.m-labs.hk" = null;
|
2019-05-22 19:23:41 +08:00
|
|
|
|
|
|
|
|
|
"fractalide.org" = null;
|
|
|
|
|
"www.fractalide.org" = null;
|
|
|
|
|
"hydra.fractalide.org" = null;
|
|
|
|
|
"git.fractalide.org" = null;
|
2019-07-19 16:24:04 +08:00
|
|
|
|
"puff.fractalide.org" = null;
|
2019-07-01 22:53:39 +08:00
|
|
|
|
"luceo-mainnet-rest.fractalide.org" = null;
|
|
|
|
|
"luceo-mainnet-grpc.fractalide.org" = null;
|
|
|
|
|
"luceo-testnet-rest.fractalide.org" = null;
|
|
|
|
|
"luceo-testnet-grpc.fractalide.org" = null;
|
2019-04-01 19:47:47 +08:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2019-03-27 22:42:12 +08:00
|
|
|
|
services.nginx = {
|
|
|
|
|
enable = true;
|
|
|
|
|
recommendedProxySettings = true;
|
2019-07-27 11:27:28 +08:00
|
|
|
|
recommendedGzipSettings = true;
|
2019-07-19 14:54:18 +08:00
|
|
|
|
virtualHosts = let
|
|
|
|
|
mainWebsite = {
|
2019-04-21 10:43:48 +08:00
|
|
|
|
addSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-07-19 15:57:35 +08:00
|
|
|
|
root = "${hydraWwwOutputs}/web";
|
2019-07-26 21:29:54 +08:00
|
|
|
|
extraConfig = ''
|
|
|
|
|
error_page 404 /404.html;
|
|
|
|
|
'';
|
2019-07-27 11:27:28 +08:00
|
|
|
|
locations."^~ /fonts/".extraConfig = ''
|
|
|
|
|
expires 60d;
|
|
|
|
|
'';
|
|
|
|
|
locations."^~ /js/".extraConfig = ''
|
|
|
|
|
expires 60d;
|
|
|
|
|
'';
|
2019-07-19 15:57:35 +08:00
|
|
|
|
locations."/MathJax" = {
|
|
|
|
|
alias = "/var/www/MathJax";
|
2019-07-27 11:27:28 +08:00
|
|
|
|
extraConfig = ''
|
|
|
|
|
expires 60d;
|
|
|
|
|
'';
|
2019-07-19 15:57:35 +08:00
|
|
|
|
};
|
2019-07-19 16:23:47 +08:00
|
|
|
|
|
|
|
|
|
# legacy URLs, redirect to avoid breaking people's bookmarks
|
2019-05-14 00:17:27 +08:00
|
|
|
|
locations."/gateware.html".extraConfig = ''
|
2019-07-18 23:25:35 +08:00
|
|
|
|
return 301 /gateware/migen/;
|
|
|
|
|
'';
|
|
|
|
|
locations."/migen".extraConfig = ''
|
|
|
|
|
return 301 /gateware/migen/;
|
|
|
|
|
'';
|
|
|
|
|
locations."/artiq".extraConfig = ''
|
|
|
|
|
return 301 /experiment-control/artiq/;
|
2019-05-14 00:17:27 +08:00
|
|
|
|
'';
|
2019-07-31 22:47:54 +08:00
|
|
|
|
locations."/artiq/resources.html".extraConfig = ''
|
|
|
|
|
return 301 /experiment-control/resources/;
|
|
|
|
|
'';
|
2019-07-19 16:23:47 +08:00
|
|
|
|
|
|
|
|
|
# autogenerated ARTIQ manuals
|
2019-05-22 19:23:21 +08:00
|
|
|
|
locations."/artiq/manual-beta" = {
|
|
|
|
|
alias = "${hydraWwwOutputs}/artiq-manual-html-beta/share/doc/artiq-manual/html";
|
|
|
|
|
};
|
|
|
|
|
locations."/artiq/manual-beta.pdf" = {
|
|
|
|
|
alias = "${hydraWwwOutputs}/artiq-manual-latexpdf-beta/share/doc/artiq-manual/ARTIQ.pdf";
|
2019-07-18 00:20:05 +08:00
|
|
|
|
};
|
2019-07-19 16:23:47 +08:00
|
|
|
|
|
|
|
|
|
# legacy content
|
2019-07-29 11:44:48 +08:00
|
|
|
|
locations."/migen/manual" = {
|
|
|
|
|
alias = "/var/www/m-labs.hk.old/migen/manual";
|
|
|
|
|
};
|
2019-07-19 16:23:47 +08:00
|
|
|
|
locations."/artiq/manual" = {
|
|
|
|
|
alias = "/var/www/m-labs.hk.old/artiq/manual-release-4";
|
|
|
|
|
};
|
2019-07-22 19:32:18 +08:00
|
|
|
|
locations."/artiq/manual-release-4" = {
|
|
|
|
|
alias = "/var/www/m-labs.hk.old/artiq/manual-release-4";
|
|
|
|
|
};
|
2019-07-19 16:23:47 +08:00
|
|
|
|
locations."/artiq/manual-release-3" = {
|
|
|
|
|
alias = "/var/www/m-labs.hk.old/artiq/manual-release-3";
|
|
|
|
|
};
|
2019-04-21 10:43:48 +08:00
|
|
|
|
};
|
2019-07-19 14:54:18 +08:00
|
|
|
|
in {
|
|
|
|
|
"m-labs.hk" = mainWebsite;
|
|
|
|
|
"www.m-labs.hk" = mainWebsite;
|
2019-03-28 00:15:40 +08:00
|
|
|
|
"lab.m-labs.hk" = {
|
|
|
|
|
addSSL = true;
|
2019-04-01 19:47:47 +08:00
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-05-24 10:26:59 +08:00
|
|
|
|
locations."/munin".alias = "/var/www/munin";
|
2019-06-24 18:54:44 +08:00
|
|
|
|
locations."/munin".extraConfig = ''
|
|
|
|
|
auth_basic "Munin";
|
|
|
|
|
auth_basic_user_file /etc/nixos/secret/muninpasswd;
|
|
|
|
|
'';
|
2019-05-02 13:54:21 +08:00
|
|
|
|
locations."/homu/".proxyPass = "http://127.0.0.1:54856/";
|
2019-03-28 00:15:40 +08:00
|
|
|
|
};
|
|
|
|
|
"nixbld.m-labs.hk" = {
|
|
|
|
|
forceSSL = true;
|
2019-04-01 19:47:47 +08:00
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-03-28 00:15:40 +08:00
|
|
|
|
locations."/".proxyPass = "http://127.0.0.1:3000";
|
|
|
|
|
};
|
2019-07-19 16:23:47 +08:00
|
|
|
|
"conda.m-labs.hk" = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
|
|
|
|
locations."/artiq-beta" = {
|
|
|
|
|
alias = "${hydraWwwOutputs}/artiq-conda-channel-beta";
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
autoindex on;
|
|
|
|
|
index bogus_index_file;
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
2019-03-31 23:51:06 +08:00
|
|
|
|
"git.m-labs.hk" = {
|
2019-03-28 00:15:40 +08:00
|
|
|
|
forceSSL = true;
|
2019-04-01 19:47:47 +08:00
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-03-31 23:51:06 +08:00
|
|
|
|
locations."/".proxyPass = "http://127.0.0.1:3001";
|
2019-07-22 19:34:07 +08:00
|
|
|
|
extraConfig = ''
|
|
|
|
|
client_max_body_size 300M;
|
|
|
|
|
'';
|
2019-03-27 22:42:12 +08:00
|
|
|
|
};
|
2019-04-01 00:12:46 +08:00
|
|
|
|
"chat.m-labs.hk" = {
|
|
|
|
|
forceSSL = true;
|
2019-04-01 19:47:47 +08:00
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-04-01 00:12:46 +08:00
|
|
|
|
locations."/".proxyPass = "http://127.0.0.1:8065";
|
2019-04-02 00:50:02 +08:00
|
|
|
|
locations."~ /api/v[0-9]+/(users/)?websocket$".proxyPass = "http://127.0.0.1:8065";
|
|
|
|
|
locations."~ /api/v[0-9]+/(users/)?websocket$".proxyWebsockets = true;
|
2019-04-01 00:12:46 +08:00
|
|
|
|
};
|
2019-04-26 06:16:33 +08:00
|
|
|
|
"hooks.m-labs.hk" = {
|
2019-05-13 23:18:04 +08:00
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
|
|
|
|
locations."/".extraConfig = ''
|
|
|
|
|
include ${pkgs.nginx}/conf/uwsgi_params;
|
|
|
|
|
uwsgi_pass unix:${config.services.uwsgi.runDir}/uwsgi.sock;
|
2019-04-26 06:16:33 +08:00
|
|
|
|
'';
|
2019-05-13 23:18:04 +08:00
|
|
|
|
};
|
2019-05-21 16:08:54 +08:00
|
|
|
|
"forum.m-labs.hk" = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
|
|
|
|
root = "/var/www/flarum/public";
|
|
|
|
|
locations."~ \.php$".extraConfig = ''
|
|
|
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
|
|
|
fastcgi_index index.php;
|
|
|
|
|
'';
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
index index.php;
|
|
|
|
|
include /var/www/flarum/.nginx.conf;
|
|
|
|
|
'';
|
|
|
|
|
};
|
2019-05-22 19:23:41 +08:00
|
|
|
|
|
2019-07-01 22:53:39 +08:00
|
|
|
|
"hydra.fractalide.org" = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3000";
|
|
|
|
|
};
|
|
|
|
|
"git.fractalide.org" = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3001";
|
|
|
|
|
};
|
2019-05-22 19:23:41 +08:00
|
|
|
|
"fractalide.org" = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-07-01 22:53:39 +08:00
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3002";
|
2019-05-22 19:23:41 +08:00
|
|
|
|
};
|
|
|
|
|
"www.fractalide.org" = {
|
2019-07-01 22:53:39 +08:00
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3002";
|
|
|
|
|
};
|
2019-07-19 16:24:04 +08:00
|
|
|
|
"puff.fractalide.org" = {
|
2019-05-22 19:23:41 +08:00
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-07-19 16:24:04 +08:00
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3008";
|
2019-05-22 19:23:41 +08:00
|
|
|
|
};
|
2019-07-01 22:53:39 +08:00
|
|
|
|
"luceo-mainnet-rest.fractalide.org" = {
|
2019-05-22 19:23:41 +08:00
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-07-01 22:53:39 +08:00
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3004";
|
2019-05-22 19:23:41 +08:00
|
|
|
|
};
|
2019-07-01 22:53:39 +08:00
|
|
|
|
"luceo-mainnet-grpc.fractalide.org" = {
|
2019-05-22 19:23:41 +08:00
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-07-01 22:53:39 +08:00
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3005";
|
2019-05-22 19:23:41 +08:00
|
|
|
|
};
|
2019-07-01 22:53:39 +08:00
|
|
|
|
"luceo-testnet-rest.fractalide.org" = {
|
2019-05-22 19:23:41 +08:00
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
2019-07-01 22:53:39 +08:00
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3006";
|
|
|
|
|
};
|
|
|
|
|
"luceo-testnet-grpc.fractalide.org" = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
useACMEHost = "nixbld.m-labs.hk";
|
|
|
|
|
locations."/".proxyPass = "http://192.168.1.204:3007";
|
2019-05-22 19:23:41 +08:00
|
|
|
|
};
|
2019-04-26 06:16:33 +08:00
|
|
|
|
};
|
|
|
|
|
};
|
2019-07-19 15:19:03 +08:00
|
|
|
|
# not needed after 19.09 - https://github.com/NixOS/nixpkgs/pull/60578
|
|
|
|
|
services.nginx.package = pkgs.nginx.overrideAttrs (drv: {
|
|
|
|
|
patches = (drv.patches or []) ++ pkgs.lib.singleton (pkgs.fetchurl {
|
|
|
|
|
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/master/"
|
|
|
|
|
+ "pkgs/servers/http/nginx/nix-etag-1.15.4.patch";
|
|
|
|
|
sha256 = "0i2lfz66204kcm1qdqws07cbq5nh1grxcz1ycp6qhmypl3da8hq4";
|
|
|
|
|
postFetch = ''
|
|
|
|
|
substituteInPlace "$out" \
|
|
|
|
|
--subst-var-by nixStoreDir "$NIX_STORE" \
|
|
|
|
|
--subst-var-by nixStoreDirLen "''${#NIX_STORE}"
|
|
|
|
|
'';
|
|
|
|
|
});
|
|
|
|
|
});
|
2019-04-26 06:16:33 +08:00
|
|
|
|
services.uwsgi = {
|
|
|
|
|
enable = true;
|
|
|
|
|
plugins = [ "python3" ];
|
|
|
|
|
instance = {
|
|
|
|
|
type = "emperor";
|
|
|
|
|
vassals = {
|
|
|
|
|
mattermostgithub = import ./mattermost-github-integration/uwsgi-config.nix { inherit config pkgs; };
|
|
|
|
|
};
|
2019-03-27 22:42:12 +08:00
|
|
|
|
};
|
|
|
|
|
};
|
2019-05-21 16:08:54 +08:00
|
|
|
|
services.mysql = {
|
|
|
|
|
enable = true;
|
|
|
|
|
package = pkgs.mariadb;
|
|
|
|
|
};
|
|
|
|
|
services.phpfpm.poolConfigs.mypool = ''
|
|
|
|
|
listen = 127.0.0.1:9000
|
|
|
|
|
user = nobody
|
|
|
|
|
pm = dynamic
|
|
|
|
|
pm.max_children = 5
|
|
|
|
|
pm.start_servers = 2
|
|
|
|
|
pm.min_spare_servers = 1
|
|
|
|
|
pm.max_spare_servers = 3
|
|
|
|
|
pm.max_requests = 500
|
|
|
|
|
'';
|
2019-03-27 22:42:12 +08:00
|
|
|
|
|
2019-05-02 13:54:21 +08:00
|
|
|
|
services.homu = {
|
|
|
|
|
enable = true;
|
|
|
|
|
config = "/etc/nixos/secret/homu.toml";
|
|
|
|
|
};
|
2019-05-01 04:38:58 +08:00
|
|
|
|
|
2019-02-16 00:33:08 +08:00
|
|
|
|
# This value determines the NixOS release with which your system is to be
|
|
|
|
|
# compatible, in order to avoid breaking some software such as database
|
|
|
|
|
# servers. You should change this only after NixOS release notes say you
|
|
|
|
|
# should.
|
|
|
|
|
system.stateVersion = "18.09"; # Did you read the comment?
|
|
|
|
|
}
|