summaryrefslogtreecommitdiff
path: root/nixosConfigurations/yavanna/default.nix
blob: ba298f87595886b9a7e6bd890032f52bcb09c144 (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
{lib, ...}:
with lib; {
  nixfiles.modules = {
    wireguard.client.enable = true;

    syncthing.enable = true;

    acme.enable = true;

    rtorrent.enable = true;
    lidarr.enable = true;

    # Eats too much CPU to run unattended :(
    # ipfs.enable = true;
  };

  boot.loader.grub = {
    enable = true;
    device = "/dev/sda";
    configurationLimit = 5;
  };

  fileSystems."/" = {
    device = "/dev/sda2";
    fsType = "ext4";
    options = ["noatime"];
  };

  swapDevices = [{device = "/dev/sda3";}];

  zramSwap = {
    enable = true;
    memoryPercent = 25;
  };
}