From 0bea115d9d2e30e2d16f4accabd664e50d5d891c Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Wed, 20 May 2026 13:59:45 +0300 Subject: [PATCH] Configuring zfs --- modules/apps.nix | 3 ++- modules/desktop.nix | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/apps.nix b/modules/apps.nix index acf2d70..e328467 100644 --- a/modules/apps.nix +++ b/modules/apps.nix @@ -77,8 +77,9 @@ fsearch warpd wl-kbptr - nnd + nnd # Terminal debugger for linux cppcheck + smartmontools # For ZFS monitoring apparently # Communication wasistlos # Whatsapp diff --git a/modules/desktop.nix b/modules/desktop.nix index 8574b69..7a7c2f7 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -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" ]; # }; }