retire toaster and remove dead code

This commit is contained in:
Grigory Shipunov 2023-08-05 20:48:58 +02:00
parent 8b8d90cec4
commit 9e5d5bd874
30 changed files with 0 additions and 1468 deletions

View file

@ -1,19 +0,0 @@
{ pkgs, ... }: {
services.fstrim.enable = true;
services.zfs = {
autoSnapshot.enable = true;
trim.enable = true;
autoScrub = {
enable = true;
pools = [ "toasterpool" ];
};
};
networking.hostId = "dca22577";
boot = {
kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages;
supportedFilesystems = [ "zfs" ];
kernelParams = [ "nohibernate" ];
plymouth.enable = false;
tmp.useTmpfs = true;
};
}