From ded3aa8e5900768fb0c42660714f85d1f0546064 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 9 Nov 2021 23:58:42 -0500 Subject: [PATCH] hosts/Infini-FRAMEWORK: specify SSD option in filesystems --- hosts/Infini-FRAMEWORK/hardware-configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; };