blob: b740da33f17fcf05a3fff10ccb65320236208986 (
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
|
{
config,
inputs,
lib,
this,
...
}:
with lib; {
secrets = {
wireguard-private-key-yavanna.file = "${inputs.self}/secrets/wireguard-private-key-yavanna";
syncthing-cert-yavanna = with config.services.syncthing; {
file = "${inputs.self}/secrets/syncthing-cert-yavanna";
owner = user;
inherit group;
};
syncthing-key-yavanna = with config.services.syncthing; {
file = "${inputs.self}/secrets/syncthing-key-yavanna";
owner = user;
inherit group;
};
};
nixfiles.modules = {
wireguard = {
privateKeyFile = config.secrets.wireguard-private-key-yavanna.path;
client.enable = true;
};
syncthing = with config.secrets; {
enable = true;
key = syncthing-key-yavanna.path;
cert = syncthing-cert-yavanna.path;
};
acme.enable = true;
rtorrent = {
enable = true;
flood.enable = true;
};
};
networking = let
interface = "eth0";
in {
interfaces.${interface} = {
ipv4.addresses = [
{
inherit (this.ipv4) address;
prefixLength = 24;
}
];
ipv6.addresses = [
{
inherit (this.ipv6) address;
prefixLength = 128;
}
];
};
defaultGateway = {
inherit interface;
address = this.ipv4.gateway;
};
defaultGateway6 = {
inherit interface;
address = this.ipv6.gateway;
};
};
boot = {
loader.grub = {
enable = true;
device = "/dev/sda";
};
initrd = {
availableKernelModules = ["uhci_hcd" "ahci"];
kernelModules = ["nvme"];
};
};
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
options = ["noatime"];
};
swapDevices = [
{
device = "/swapfile";
size = 4 * 1024;
}
];
system.stateVersion = "22.05";
}
|