Bigger f2fs comment

This commit is contained in:
Username404-59 2026-06-22 16:02:40 +02:00
parent 5deccae79d
commit 7f58dcefa5
Signed by: Username404-59
GPG Key ID: F3A1878B14F5F0D7

View File

@ -57,7 +57,20 @@ in
fileSystems."/".options = [ "noatime" "discard" ]; fileSystems."/".options = [ "noatime" "discard" ];
# Note: for f2fs, create it with "sudo fsck.f2fs -O extra_attr,flexible_inline_xattr,inode_checksum,sb_checksum,compression,lost_found /dev/sdxY" # Note: for f2fs, create it with "sudo fsck.f2fs -O extra_attr,flexible_inline_xattr,inode_checksum,sb_checksum,compression,lost_found /dev/sdxY"
# & add "noatime,discard" (done here) and "compress_algorithm=lzo-rle,compress_chksum,atgc,gc_merge,checkpoint=enable,checkpoint_merge,fsync_mode=posix,nat_bits" to mount options /* And add these to mount options in hardware-configuration.nix
options = [
"compress_algorithm=lzo-rle"
"compress_extension=*"
"nocompress_extension=avif,bmp,gif,heic,heif,ico,jpe,jpeg,jpg,png,svg,tif,tiff,webp,3gp,avi,flv,m4v,mkv,mov,mp4,mpeg,mpg,webm,wmv,aac,flac,m4a,mid,midi,mp3,ogg,opus,wav,wma,7z,bz2,gz,rar,tar,tgz,xz,zip,zst,docx,odt,odp,ods,pptx,xlsx,pdf,db,gpg,key,p12,pem,sqlite,sqlite3,enc,aab,apk,appimage,bin,deb,dll,elf,exe,jar,so,rpm,img,iso,qcow2,vdi,vhd,vmdk,otf,ttf,class,dump,log,swp,tmp,bak,cache,part,old,new,core"
"compress_chksum"
"atgc"
"gc_merge"
"checkpoint=enable",
"checkpoint_merge"
"fsync_mode=posix"
"nat_bits"
];
*/
networking.hostName = if !isLaptop then "lizard" else "lizard-portable"; networking.hostName = if !isLaptop then "lizard" else "lizard-portable";
} }