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