From 53702e58b4c879f395dff190b3a4301dc3104883 Mon Sep 17 00:00:00 2001 From: Josh Buker Date: Wed, 28 Jan 2026 23:18:19 -0800 Subject: [PATCH] Appease nixfmt --- hardkernel/odroid-m1/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/hardkernel/odroid-m1/default.nix b/hardkernel/odroid-m1/default.nix index bde34d4..f5977b5 100644 --- a/hardkernel/odroid-m1/default.nix +++ b/hardkernel/odroid-m1/default.nix @@ -16,7 +16,16 @@ boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.6") (lib.mkDefault pkgs.linuxPackages_latest); # TODO: Debug why removing this breaks booting from petitboot - boot.supportedFilesystems = lib.mkForce ["btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs"]; + boot.supportedFilesystems = lib.mkForce [ + "btrfs" + "cifs" + "f2fs" + "jfs" + "ntfs" + "reiserfs" + "vfat" + "xfs" + ]; # TODO: Some of these could potentially be omitted, check which ones are # actually necessary for disk access to function @@ -31,6 +40,6 @@ # Petitboot uses this port and baud rate on the board's serial port. It's # probably good to keep the options same for the running kernel for serial # console access to work well. - boot.kernelParams = ["console=ttyS2,1500000"]; + boot.kernelParams = [ "console=ttyS2,1500000" ]; hardware.deviceTree.name = "rockchip/rk3568-odroid-m1.dtb"; }