NixOS on RISCV/VisionFive 2: Difference between revisions

Onny (talk | contribs)
Setup: Update uboot btrfs config
Onny (talk | contribs)
Setup: Update and fix btrfs image instruction
Line 110: Line 110:
];
];


fileSystems."/" = { fsType = lib.mkForce "btrfs"; };
fileSystems."/" = {
  fsType = lib.mkForce "btrfs";
  options = [
    "compress=zstd"
    "noatime"
    "rw"
  ];
};
</nowiki>}}
</nowiki>}}