From b13ca92b727d94b77a3d8ec155d92b82c866b417 Mon Sep 17 00:00:00 2001 From: Colin Date: Sat, 1 Jun 2024 20:14:49 +0000 Subject: [PATCH] polyfill: remove boot.{enableContainers,bcache} --- hosts/common/polyunfill.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/common/polyunfill.nix b/hosts/common/polyunfill.nix index 5d22bdf8..10e4811f 100644 --- a/hosts/common/polyunfill.nix +++ b/hosts/common/polyunfill.nix @@ -144,6 +144,10 @@ in # it was enabled by default before 23.11 boot.swraid.enable = lib.mkDefault false; + # see: + # these allow you to use the Linux block cache (cool! doesn't need to be a default though) + boot.bcache.enable = lib.mkDefault false; + # see: # by default, it adds to boot.initrd.availableKernelModules: # - SATA: "ahci" "sata_nv" "sata_via" "sata_sis" "sata_uli" "ata_piix" "pata_marvell" @@ -155,5 +159,8 @@ in # - on x86 only: more keyboard stuff: "pcips2" "atkbd" "i8042" boot.initrd.includeDefaultModules = lib.mkDefault false; + + # see: + boot.enableContainers = lib.mkDefault false; }; }