fix: Reduce ARC on Planex

This commit is contained in:
Kyle Brown 2023-12-08 14:25:12 -08:00
parent db24537b24
commit d656d92888
2 changed files with 23 additions and 1 deletions

View file

@ -33,4 +33,26 @@
where = "/mnt/gbackups";
}
];
<<<<<<< Updated upstream:common/networking/gluster/default.nix
=======
systemd.automounts = [
{
wantedBy = ["multi-user.target"];
where = "/mnt/gdocker";
}
{
wantedBy = ["multi-user.target"];
where = "/mnt/gmedia";
}
{
wantedBy = ["multi-user.target"];
where = "/mnt/gdockerdata";
}
{
wantedBy = ["multi-user.target"];
where = "/mnt/gbackups";
}
];
>>>>>>> Stashed changes:common/networking/gluster.nix
}

View file

@ -11,7 +11,7 @@
];
networking.hostId = "eb081e21";
#boot.zfs.extraPools = ["exos"];
boot.kernelParams = ["zfs.zfs_arc_max=26843545600"]; # 25GB
boot.kernelParams = ["zfs.zfs_arc_max=8589934592"]; # 8GB
services.zfs.autoSnapshot.enable = true;