hosts/Infini-FRAMEWORK: specify SSD option in filesystems

This commit is contained in:
Infinidoge 2021-11-09 23:58:42 -05:00
parent 87abd0f5b3
commit ded3aa8e59

View file

@ -26,21 +26,21 @@ in
"/persist" = { "/persist" = {
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9"; device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=root" "autodefrag" "noatime" ]; options = [ "subvol=root" "autodefrag" "noatime" "ssd" ];
neededForBoot = true; neededForBoot = true;
}; };
"/nix" = { "/nix" = {
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9"; device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=nix" "autodefrag" "noatime" ]; options = [ "subvol=nix" "autodefrag" "noatime" "ssd" ];
neededForBoot = true; neededForBoot = true;
}; };
"/boot" = { "/boot" = {
device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9"; device = uuid "a44af0ff-5667-465d-b80a-1934d1aab8d9";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=boot" "autodefrag" "noatime" ]; options = [ "subvol=boot" "autodefrag" "noatime" "ssd" ];
neededForBoot = true; neededForBoot = true;
}; };