blob: 5531cb9ce80375d1c43a2da52cc5f9795827e2fa (
plain) (
blame)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
{
config,
lib,
this,
...
}:
with lib; {
imports = [
./mailserver.nix
./webserver.nix
];
nixfiles.modules = {
nsd = {
enable = true;
fqdn = "ns1.${config.networking.domain}";
};
unbound.enable = true;
wireguard.server.enable = true;
acme.enable = true;
monitoring.enable = true;
git.server = {
enable = true;
domain = "git.${my.domain.azahi}";
};
gotify.enable = true;
matrix.dendrite = {
enable = true;
domain = my.domain.azahi;
};
radicale.enable = true;
rss-bridge.enable = true;
shadowsocks.enable = true;
soju = {
enable = true;
domain = my.domain.azahi;
};
vaultwarden.enable = true;
};
networking = let
interface = "eth0";
in {
interfaces.${interface} = {
ipv4.addresses = [
{
inherit (this.ipv4) address;
prefixLength = 22;
}
];
ipv6.addresses = [
{
inherit (this.ipv6) address;
prefixLength = 64;
}
];
};
defaultGateway = {
inherit interface;
address = this.ipv4.gateway;
};
defaultGateway6 = {
inherit interface;
address = this.ipv6.gateway;
};
nat.externalInterface = interface;
};
boot = {
loader.grub = {
enable = true;
device = "/dev/sda";
};
initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod"];
};
fileSystems = {
"/boot" = {
device = "/dev/sda1";
fsType = "xfs";
options = ["noatime"];
};
"/" = {
device = "/dev/sda2";
fsType = "xfs";
options = ["noatime"];
};
};
swapDevices = [
{
device = "/dev/sda3";
}
];
zramSwap = {
enable = true;
memoryPercent = 25;
};
}
|