diff --git a/hosts/Infini-FRAMEWORK/hardware-configuration.nix b/hosts/Infini-FRAMEWORK/hardware-configuration.nix index 3dced3c..902b24d 100644 --- a/hosts/Infini-FRAMEWORK/hardware-configuration.nix +++ b/hosts/Infini-FRAMEWORK/hardware-configuration.nix @@ -26,21 +26,21 @@ in "/persist" = { device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9"; fsType = "btrfs"; - options = [ "subvol=root" "autodefrag" "noatime" ]; + options = [ "subvol=root" "autodefrag" "noatime" "ssd" ]; neededForBoot = true; }; "/nix" = { device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9"; fsType = "btrfs"; - options = [ "subvol=nix" "autodefrag" "noatime" ]; + options = [ "subvol=nix" "autodefrag" "noatime" "ssd" ]; neededForBoot = true; }; "/boot" = { device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9"; fsType = "btrfs"; - options = [ "subvol=boot" "autodefrag" "noatime" ]; + options = [ "subvol=boot" "autodefrag" "noatime" "ssd" ]; neededForBoot = true; };