Configuring zfs

This commit is contained in:
2026-05-20 13:59:45 +03:00
parent f670202de6
commit 0bea115d9d
2 changed files with 7 additions and 2 deletions

View File

@@ -77,8 +77,9 @@
fsearch
warpd
wl-kbptr
nnd
nnd # Terminal debugger for linux
cppcheck
smartmontools # For ZFS monitoring apparently
# Communication
wasistlos # Whatsapp

View File

@@ -16,11 +16,15 @@
options = [ "rw" "noatime" "uid=1000" "nofail" ];
};
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.forceImportRoot = false;
networking.hostId = "7223ffff";
# Automatically mount E drive
# fileSystems."/mnt/e" = {
# device = "/dev/sda2";
# fsType = "ntfs-3g";
# options = [ "rw" "noatime" "uid=1000" ];
# options = [ "rw" "noatime" "uid=1000" "nofail" ];
# };
}