kernel filesystem config changes

patch with bcachefs
enable bcachefs, exfat, squashfs
enable ntfs rw
This commit is contained in:
LavaDesu 2021-05-14 12:08:50 +07:00
parent 56f5377205
commit ea087f500e
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 48 additions and 9 deletions

View file

@ -5,6 +5,7 @@
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
supportedFilesystems = ["bcachefs"];
blacklistedKernelModules = [
"uvcvideo"
];
@ -21,6 +22,6 @@
"radeon.si_support=0"
"intel_pstate=passive"
];
kernelPackages = pkgs.linux-lava;
kernelPackages = pkgs.lib.mkForce pkgs.linux-lava;
};
}