From 3bd47770d021a0dbcee26ff14fa852428ba22ed5 Mon Sep 17 00:00:00 2001 From: NullBite <me@nullbite.com> Date: Thu, 19 Dec 2024 03:07:34 -0500 Subject: [PATCH] system: add a lot of filesystems --- system/profile/pc.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/system/profile/pc.nix b/system/profile/pc.nix index b8ea5f1..0938200 100644 --- a/system/profile/pc.nix +++ b/system/profile/pc.nix @@ -40,7 +40,17 @@ in # enable filesystems boot.supportedFilesystems = { + # not yet; need kernel 6.7. update the lts kernel first. + # bcachefs = mkDefault true; + cifs = mkDefault true; + ext4 = mkDefault true; + ecryptfs = mkDefault true; exfat = mkDefault true; + f2fs = mkDefault true; + nfs = mkDefault true; + squashfs = mkDefault true; + vfat = mkDefault true; + xfs = mkDefault true; }; # probably unnecessary, this will be enabled by whatever session i use