hosts/Infini-FRAMEWORK: specify SSD option in filesystems
This commit is contained in:
parent
87abd0f5b3
commit
ded3aa8e59
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue