summaryrefslogtreecommitdiff
path: root/hosts/toaster/zfs.nix
blob: 03f0ed7c145b6c331da3a7069c375d09abe19050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  pkgs,
  ...
}:
{
  services.fstrim.enable = true;
  services.zfs = {
    autoSnapshot.enable = true;
    trim.enable = true;
    autoScrub = {
      enable = true;
      pools = [ "zpool" ];
    };
  };
  networking.hostId = "dca22577";
  boot = {
    plymouth.enable = false;
    tmp.useTmpfs = false;
    tmp.cleanOnBoot = true;
  };
}