blob: fdfb32e49c6119cdd42b40c651fb21a49b4f2f0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
nutin-madaj - cloud infrastructure server.
This serves the git repo, mailserver, znc bouncer, user sites, and so on.
Currently also used as a catch-all production/staging server, until I get real
stuff deployed.
*/
let
nixpkgs = builtins.fetchTarball (import ../../pack/nixpkgs.nix);
nixos-mailserver = builtins.fetchTarball {
url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/v2.2.1/nixos-mailserver-v2.2.1.tar.gz";
sha256 = "03d49v8qnid9g9rha0wg2z6vic06mhp0b049s3whccn1axvs2zzx";
};
ibbPort = "3000";
fathomPort = "3030";
in
import "${nixpkgs}/nixos" {
system = "x86_64-linux";
configuration = {
imports = [
./hardware-configuration.nix
./networking.nix
# common infra
../users.nix
../packages.nix
# configured modules
./git.nix
./mail.nix
./web.nix
./znc.nix
# our custom modules
../../mode/ibb.nix
../../mode/fathom.nix
# third party
nixos-mailserver
];
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
(import ../../pack/overlay.nix)
];
networking.firewall.allowedTCPPorts = [ 22 80 443 ];
programs.mosh = {
enable = true;
withUtempter = true;
};
# our custom apps
services = {
ibb = {
enable = true;
port = ibbPort;
};
# TODO: move this nginx config into mode/ibb.nix
nginx.virtualHosts."influencedbybooks.com" = {
forceSSL = true;
enableACME = true;
locations = {
"/" = {
proxyPass = "http://localhost:${ibbPort}";
};
};
};
fathom = {
enable = true;
port = fathomPort;
dataDir = "/var/lib/fathom";
};
nginx.virtualHosts."stats.simatime.com" = {
locations."/".proxyPass = "http://localhost:${fathomPort}";
forceSSL = true;
enableACME = true;
};
};
boot.cleanTmpDir = true;
networking.hostName = "simatime";
networking.firewall.allowPing = true;
services.openssh.enable = true;
};
}
|