Prevent skycam reboot on panic

This commit is contained in:
Jordan Holt 2024-08-09 20:03:42 +01:00
parent 91d66003aa
commit 7943e063c2
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -7,9 +7,12 @@
boot = { boot = {
kernelModules = [ "bcm2835-v4l2" ]; kernelModules = [ "bcm2835-v4l2" ];
kernelParams = [ "cma=512M" ]; kernelParams = [
supportedFilesystems = lib.mkForce [ "f2fs" "vfat xfs" ]; "cma=512M"
tmp.cleanOnBoot = true; "panic=0"
];
supportedFilesystems = lib.mkForce [ "f2fs" "vfat" "xfs" ];
tmp.cleanOnBoot = false;
}; };
nixpkgs.overlays = [ nixpkgs.overlays = [