blob: 2ff8993fc927c28bed19036fc9a9ea06d7f5a531 (
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
|
{lib, ...}:
with lib; {
nixfiles.modules = {
wireguard.client.enable = true;
acme.enable = true;
k3s.enable = false;
};
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
configurationLimit = 10;
};
};
initrd.availableKernelModules = [
"virtio_pci"
"virtio_scsi"
];
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/b07e8273-915a-424c-8c55-cdc2bd482f49";
fsType = "xfs";
options = ["noatime"];
};
"/boot" = {
device = "/dev/disk/by-uuid/03FD-B6C0";
fsType = "vfat";
};
};
swapDevices = [
{
device = "/swapfile";
size = 4 * 1024;
}
];
zramSwap = {
enable = true;
memoryPercent = 25;
};
}
|